Page 1 of 1

Wired stuff inside the executeable

Posted: Mon Aug 23, 2004 7:25 pm
by Ralf
Just try following line, create an executeable and take a look into the file! You may see readable parts (asm source?) like: eax=%ld edx=%ld eax=%lu edx=%lu %l and some empty spaces $20!

Code: Select all

    OpenWindow(0,20,20,20,20,#PB_Window_WindowCentered ,"test")

Posted: Mon Aug 23, 2004 9:24 pm
by Max.²
Turn off the debugger and then have a look again.

Posted: Mon Aug 23, 2004 11:35 pm
by PB
> Turn off the debugger and then have a look again.

Makes no difference -- the debugger is automatically disabled when creating an exe.

Posted: Tue Aug 24, 2004 7:02 am
by Rings
lol, yes confirmed.
I bet that fred forgot to remove something......

Posted: Tue Aug 24, 2004 9:21 am
by Max.²
Rings wrote:lol, yes confirmed.
I bet that fred forgot to remove something......
Darn, could have sworn it wasn't in my exes. :lol:

Posted: Tue Aug 24, 2004 1:14 pm
by Rings
Rings wrote:lol, yes confirmed.
I bet that fred forgot to remove something......
could be a PRINTF Call with these parameters/placeholders ( eax=%ld edx=%ld eax=%lu edx=%lu %l ) typically for debugging.

Posted: Mon Sep 06, 2004 10:00 am
by Fred
I will have a closer look, thank you ;)