rnd-20090919-1-src
[rocksndiamonds.git] / src / game_sp / ASM.c
index 6ef27ee39c169502a235c98a8769365588e2feea..24d4c2f65d8c64d02a3e81be762ee76edea5b7b8 100644 (file)
@@ -4,7 +4,8 @@
 
 #include "ASM.h"
 
-static char *VB_Name = "modASM";
+// static char *VB_Name = "modASM";
+
 // --- Option Explicit
 
 // PseudoRegisters:
@@ -68,7 +69,11 @@ int HighByte(int Var)
 
 int SgnHighByte(int Var) // extends the signum to 16 bit
 {
+#if 1
+  short SgnHighByte;
+#else
   int SgnHighByte;
+#endif
 
   if (Var & 0x8000)
   {