From efebaf20cb1f593aaa28b7c85487e44c10f63807 Mon Sep 17 00:00:00 2001 From: smremde_cp <2296c648a83df9531cb573d8dfdead9aa751ab92VfNzPxkR> Date: Fri, 1 Aug 2008 09:59:50 +0000 Subject: [PATCH] --- source/Indy.IL2CPU.Assembler.X86/JumpIfNotZero.cs | 2 +- .../CustomImplementations/System/NumberImpl.cs | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/source/Indy.IL2CPU.Assembler.X86/JumpIfNotZero.cs b/source/Indy.IL2CPU.Assembler.X86/JumpIfNotZero.cs index c16aad4e8..16afcafed 100644 --- a/source/Indy.IL2CPU.Assembler.X86/JumpIfNotZero.cs +++ b/source/Indy.IL2CPU.Assembler.X86/JumpIfNotZero.cs @@ -17,7 +17,7 @@ namespace Indy.IL2CPU.Assembler.X86 } public override string ToString() { - return "jnz " + Address; + return "jnz near " + Address; } } } diff --git a/source/Indy.IL2CPU.IL/CustomImplementations/System/NumberImpl.cs b/source/Indy.IL2CPU.IL/CustomImplementations/System/NumberImpl.cs index dd9378799..faf71c5df 100644 --- a/source/Indy.IL2CPU.IL/CustomImplementations/System/NumberImpl.cs +++ b/source/Indy.IL2CPU.IL/CustomImplementations/System/NumberImpl.cs @@ -14,7 +14,10 @@ namespace Indy.IL2CPU.IL.CustomImplementations.System public static string FormatInt32(int aInt, string aStr, NumberFormatInfo aFormat) { return "this is a test - fix me in Indy.IL2CPU.IL.CustomImplementations.System.NumberImpl.FormatInt32"; - + } + public static string FormatDouble(double aInt, string aStr, NumberFormatInfo aFormat) + { + return "this is a test - fix me in Indy.IL2CPU.IL.CustomImplementations.System.NumberImpl.FormatDouble"; } } } \ No newline at end of file