This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.LOROM | |
; snes_header is actually broken | |
.SNESHEADER | |
ID "IDAX" | |
NAME "IDA LOROM TEST " | |
LOROM | |
FASTROM | |
CARTRIDGETYPE $02 | |
ROMSIZE $0C |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.HIROM | |
; snes_header is actually broken | |
.SNESHEADER | |
ID "IDAX" | |
NAME "IDA HIROM TEST " | |
HIROM | |
FASTROM | |
CARTRIDGETYPE $02 | |
ROMSIZE $0C |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Index: LuaInterface/LuaInterface/Metatables.cs | |
=================================================================== | |
--- LuaInterface/LuaInterface/Metatables.cs (revision 6441) | |
+++ LuaInterface/LuaInterface/Metatables.cs (working copy) | |
@@ -745,6 +745,55 @@ | |
LuaDLL.lua_pushnil(luaState); | |
return 1; | |
} | |
+ private static bool IsInteger(double x) { | |
+ return Math.Ceiling(x) == x; |
NewerOlder