paulofmandown / rotLove

Roguelike Toolkit in Love. A Love2D/lua port of rot.js
http://paulofmandown.github.io/rotLove/
Other
261 stars 26 forks source link

version check broken #5

Closed leafo closed 8 years ago

leafo commented 8 years ago

With love 0.10.0, the version checking code fails:

Lua 5.1.5  Copyright (C) 1994-2012 Lua.org, PUC-Rio
> print("0.9.0" > "0.8.0")
true
> print("0.10.0" > "0.8.0")
false
> 

Maybe you can do feature detection instead of version checking?

if love.graphics.setMode then ... else ... end
leafo commented 8 years ago

thanks!