Crash Reports (SIGSEGVs, etc)

You are trying to run a function for a player, when a player doesn't exist. You're not "bypassing" anything by checking for player.mo, what are you doing is disallowing the function to run unless a player exists. This is a user bug, not a game bug (although it should probably give an error instead of outright crashing the game).
"If it crashes, it's a bug". If Lua does stupid stuff, the developers say it should either do nothing or have the hook removed, never crash the game.

Also, that's what I meant by "bypassed". Not exactly bypass the crash, but rather check if the player is an object the command can be applied to, before applying it.
 
Maybe you just didn't make all of the correct checks, I mean, why make a command that does something to a player, when the player doesn't exist? Most lua'd commands are best used when launching a level, it'd be silly to use a command that activates a function that doesn't exist.
 
Maybe you just didn't make all of the correct checks, I mean, why make a command that does something to a player, when the player doesn't exist? Most lua'd commands are best used when launching a level, it'd be silly to use a command that activates a function that doesn't exist.
I know, and I did add the checks once I found out it could crash without them. I thought the function would check first itself, but apparently not. But again, "if it crashes, it's a bug", so I reported the crash. Which is the idea of this thread. Reporting crashes.
 
The bug here is that P_DoSuperTransformation itself doesn't check if player.mo (or rather, player->mo) exists when being run, resulting in an access violation crash when it tries to access properties of player->mo (which, since it would be NULL, is total nonsense to even do).

While ideally you should make checks to prevent this in your Lua scripts anyway, it's obviously a fault on our part too I guess. =V
 
The bug here is that P_DoSuperTransformation itself doesn't check if player.mo (or rather, player->mo) exists when being run, resulting in an access violation crash when it tries to access properties of player->mo (which, since it would be NULL, is total nonsense to even do).

While ideally you should make checks to prevent this in your Lua scripts anyway, it's obviously a fault on our part too I guess. =V
Again I have made checks, but still, it is 7% you developer guys' fault. And 93% my fault. But because of it, we can nullify that to 0% on both parts, since it's now known, and can be fixed for 2.2.[/offtopic]
 
Particular sound file causes game to crash when trying to play it. Sometimes it'll play for a moment, then crash, or it'll crash before it gets the chance to sound at all. Yes, it's an 8-bit mono wav file converted to doom format. Crashes with the standard "Srb2win.exe has stopped responding" default windows error. Wad containing said sound file included in attachments, replaces the jump sound for ease-of-use.
 

Attachments

  • sfxcrash.zip
    11.3 KB · Views: 368
"it's an 8-bit mono wave converted to doom format"
The sample rate appears to be corrupt. What was the sample rate in the original WAV file?

(Also, you don't need to and shouldn't convert to Doom format anymore; SRB2 has supported proper WAVs for sounds since 2.1.0.)
 
Last edited:
Looking at the rate, it DOES seem a little odd. 12273Hz. Sounds resource had an odd rip for this. Changing it to 48000Hz fixed it. Although, some other files under the same conditions worked fine, but I guess those were just lucky. Well, now I know to fix my sound files, thanks.
 
Code:
Error occured on Friday, May 20, 2016 at 12:46:54.
 
D:\GK\Games\2.1\srb2win.exe caused an Access Violation at location 00575d6e in module D:\GK\Games\2.1\srb2win.exe Writing to location 0c784613.
 
Registers:
eax=000000d7 ebx=09145900 ecx=000031d2 edx=0000005a esi=09f40e28 edi=0c784613
eip=00575d6e esp=0028fcec ebp=00000780 iopl=0         nv up ei pl nz na po nc
cs=0023  ss=002b  ds=002b  es=002b  fs=0053  gs=002b             efl=00010206
 
Call stack:
00575D6E  D:\GK\Games\2.1\srb2win.exe:00575D6E
00531611  D:\GK\Games\2.1\srb2win.exe:00531611
0052FE4E  D:\GK\Games\2.1\srb2win.exe:0052FE4E
00402BBA  D:\GK\Games\2.1\srb2win.exe:00402BBA
00403217  D:\GK\Games\2.1\srb2win.exe:00403217
00401870  D:\GK\Games\2.1\srb2win.exe:00401870
005B5CEF  D:\GK\Games\2.1\srb2win.exe:005B5CEF

Anything else I can specify is that I was playing as FSonic.wad in Aerial Garden Zone. Nothing other than that.

EIP 575D6E doesn't seem to give any file/line, however EIP 531611 gives r_plane.c:704 (R_DrawPlanes)
 
Last edited by a moderator:
Code:
Error occured on Friday, May 20, 2016 at 12:46:54.
 
D:\GK\Games\2.1\srb2win.exe caused an Access Violation at location 00575d6e in module D:\GK\Games\2.1\srb2win.exe Writing to location 0c784613.
 
Registers:
eax=000000d7 ebx=09145900 ecx=000031d2 edx=0000005a esi=09f40e28 edi=0c784613
eip=00575d6e esp=0028fcec ebp=00000780 iopl=0         nv up ei pl nz na po nc
cs=0023  ss=002b  ds=002b  es=002b  fs=0053  gs=002b             efl=00010206
 
Call stack:
00575D6E  D:\GK\Games\2.1\srb2win.exe:00575D6E
00531611  D:\GK\Games\2.1\srb2win.exe:00531611
0052FE4E  D:\GK\Games\2.1\srb2win.exe:0052FE4E
00402BBA  D:\GK\Games\2.1\srb2win.exe:00402BBA
00403217  D:\GK\Games\2.1\srb2win.exe:00403217
00401870  D:\GK\Games\2.1\srb2win.exe:00401870
005B5CEF  D:\GK\Games\2.1\srb2win.exe:005B5CEF

Anything else I can specify is that I was playing as FSonic.wad in Aerial Garden Zone. Nothing other than that.

EIP 575D6E doesn't seem to give any file/line, however EIP 531611 gives r_plane.c:704 (R_DrawPlanes)

any thing near that addr? It maybe the ASM code

Sent from my A0001 using ********
 
That's my thoughts too, though it's annoying that these renderer related crashes are always so hard to reproduce =S

EDIT: Yep the EIP is for R_DrawColumn_8_MMX it appears
 
Last edited:
Same starting EIP as in MotorRoach's post, EIP 5367F9 gives r_segs.c:1532 (R_RenderSegLoop)
 
Last edited:
Crash right here:

WRzdoDx.png


Was just tossing the flag around in an empty netgame. eip=00575d6e
 
errorlog.txt
SRB2 v2.1.15 -ERROR LOG-


srb2win caused an Access Violation in module srb2win.exe at 001b:00575d6e.
Exception handler called in main thread.
Error occurred at 5/29/2016 14:21:30.
E:\SRB2\srb2win.exe, run by Steel Titanium.
2 processor(s), type 586 6.3853.
Program Memory from 0x00010000 to 0x7FFEFFFF
2039 MBytes physical memory.
Write to location 034b9250 caused an access violation.

Registers:
EAX=0000007b CS=001b EIP=00575d6e EFLGS=00010206
EBX=087ae100 SS=0023 ESP=0022fcec EBP=00000280
ECX=00004028 DS=0023 ESI=23a845f0 FS=003b
EDX=00000091 ES=0023 EDI=034b9250 GS=0000
Command Line parameters: -file sc_HeroesV3.wad heroes_sounds.wad -console -console -debug -debugfile Bytes at CS : EIP:
88 ?? 07 ?? 0f ?? b6 ?? 14 ?? 16 ?? 0f ?? b6 ?? 14 ?? 13 ?? 88 ?? 14 ?? 2f ?? 8d ?? 3c ?? 6f ??
Stack dump:
0022fcec: 003e007e 00000008 003e00f0 0022fd28 00531611 0000052d 000001ff 2625dea8
0022fd0c: 00000000 000001ff 00000102 00000030 27eceac0 0022fd88 003e007e 0022fd68
0022fd2c: 0052fe4e 0000390e 00000000 00000500 00000320 0000001f 0022fd50 7650a442
0022fd4c: 029b2310 00000000 7650f345 00000000 00000000 003e007e 003e00f0 0022fdf8
0022fd6c: 00402bba 01797240 003e00f0 765a2a80 00000000 0022fd6c 01784380 0022ffc4
0022fd8c: 76528cdd 859ce07f fffffffe 0022fdc8 0040dbdf 765a2a80 765a2a80 00000000
0022fdac: 00000020 0022fd9c 00000002 46a7a419 00000020 003e00f0 0000001a 0022fdf8
0022fdcc: 0040e6f9 00000001 765a2a80 00000000 00000000 00001bb9 000186a0 00000001
0022fdec: 003e007e 003e00f0 00000008 0022fe38 00403217 00000001 00000000 00010000
0022fe0c: 00000000 05b91fe0 00000000 0022fe44 00000000 00001efd 00001eff 00000001
0022fe2c: 00001efd 003e00f0 00000008 0022fe68 00401870 006cf0e6 76dc7fda 002a17b6
0022fe4c: 6c76bc88 6c82a67c 6c8161c0 76dc7fda 00000000 01ac28a0 0000000b 003e007d
0022fe6c: 005b5cef 00000008 003e00f0 002a17b6 00000002 003e00f0 00000008 003e0018
0022fe8c: 00000008 01ac28a0 0000000b 0022feb8 005de8fd 00400000 00000000 002a1f5e
0022feac: 00000001 005b4b20 0022fed0 0022ff88 004013e2 028e15a8 0000000b 00000008
0022fecc: 004013e2 00000008 01ac28a0 01ac1588 0037cb69 cccccccc cccccccc cccccccc
0022feec: cccccccc cccccccc cccccccc cccccccc cccccccc 00000000 76dc2dd5 005b573d
0022ff0c: 00000000 00000000 00000024 00000008 01ac28a0 77215ccc 77256bea 0022ff58
0022ff2c: 00000044 002bce48 002d56c0 002d54d8 00000000 00000000 00000000 00000000
0022ff4c: 00000000 00000000 00000000 00000001 00000001 00000000 ffffffff ffffffff
0022ff6c: ffffffff 00000000 00000000 0022ff94 7ffdf000 00000000 00000000 0022ff94
0022ff8c: 76dcef1c 7ffdf000 0022ffd4 77233648 7ffdf000 77372565 00000000 00000000
0022ffac: 7ffdf000 c0000005 76de0851 76de0851 0022ffa0 0022f8ec ffffffff 771ee145
0022ffcc: 0037d409 00000000 0022ffec 7723361b 01890670 7ffdf000 00000000 00000000
0022ffec: 00000000 00000000 01890670 7ffdf000 00000000
Exception encountered during stack dump.

Module list: names, addresses, sizes, time stamps and file times:
E:\SRB2\srb2win.exe, loaded at 0x00400000 - 1869288 bytes - 00000001 - file date is 5/25/2016 19:07:28
C:\Windows\system32\igdumd32.dll, loaded at 0x03ea0000 - 4128768 bytes - 4aa7d0b8 - file date is 9/8/2009 19:58:54
E:\SRB2\libFLAC-8.dll, loaded at 0x08cc0000 - 367104 bytes - 52067b0b - file date is 8/10/2013 13:40:28
C:\Windows\system32\igdumdx32.dll, loaded at 0x10000000 - 602112 bytes - 4aa7cf82 - file date is 9/8/2009 19:53:40
E:\SRB2\exchndl.dll, loaded at 0x603c0000 - 392704 bytes - 41486e57 - file date is 3/15/2014 13:06:10
E:\SRB2\libintl-8.dll, loaded at 0x61cc0000 - 347910 bytes - 4d4a9e38 - file date is 3/15/2014 13:06:18
C:\Windows\AppPatch\AcLayers.DLL, loaded at 0x63810000 - 561664 bytes - 56f5829a - file date is 3/25/2016 14:25:24
C:\Windows\system32\XAudio2_7.dll, loaded at 0x64d70000 - 527192 bytes - 4c0641e5 - file date is 6/2/2010 04:55:30
E:\SRB2\smpeg2.dll, loaded at 0x66240000 - 301568 bytes - 52067b0b - file date is 8/10/2013 13:40:28
E:\SRB2\SDL2_mixer.dll, loaded at 0x67880000 - 184320 bytes - 52067b0b - file date is 8/10/2013 13:40:28
C:\Windows\system32\d3d8thk.dll, loaded at 0x68370000 - 11264 bytes - 4a5bd9a8 - file date is 7/13/2009 21:15:10
C:\Windows\system32\D3D9.DLL, loaded at 0x68380000 - 1828352 bytes - 4ce7b7b3 - file date is 11/20/2010 17:29:20
E:\SRB2\libvorbisfile-3.dll, loaded at 0x6b3c0000 - 62976 bytes - 52067b0b - file date is 8/10/2013 13:40:28
E:\SRB2\SDL2.dll, loaded at 0x6c740000 - 1007104 bytes - 53250d74 - file date is 11/11/2014 15:44:12
E:\SRB2\libmodplug-1.dll, loaded at 0x6cb80000 - 401920 bytes - 52067b0b - file date is 8/10/2013 13:40:28
E:\SRB2\libvorbis-0.dll, loaded at 0x6d540000 - 196096 bytes - 52067b0b - file date is 8/10/2013 13:40:28
E:\SRB2\libgme.dll, loaded at 0x6e200000 - 488210 bytes - 516a380e - file date is 3/15/2014 13:05:58
C:\Windows\system32\MPR.dll, loaded at 0x6e990000 - 64000 bytes - 4a5bda36 - file date is 7/13/2009 21:15:42
E:\SRB2\libogg-0.dll, loaded at 0x70680000 - 47104 bytes - 52067b0b - file date is 8/10/2013 13:40:28
C:\Windows\system32\OLEACC.dll, loaded at 0x72600000 - 233472 bytes - 56f583de - file date is 3/25/2016 14:30:42
C:\Windows\system32\WRusr.dll, loaded at 0x72640000 - 182200 bytes - 5732690e - file date is 5/28/2016 15:57:50
C:\Windows\system32\midimap.dll, loaded at 0x72d90000 - 16896 bytes - 4a5bda84 - file date is 7/13/2009 21:15:42
C:\Windows\system32\MSACM32.dll, loaded at 0x72da0000 - 72192 bytes - 4a5bda4e - file date is 7/13/2009 21:15:44
C:\Windows\system32\msacm32.drv, loaded at 0x72dc0000 - 20992 bytes - 4a5bda4f - file date is 7/13/2009 21:14:10
C:\Windows\system32\AUDIOSES.DLL, loaded at 0x72e20000 - 195072 bytes - 56f582a4 - file date is 3/25/2016 14:25:56
C:\Windows\system32\ksuser.dll, loaded at 0x72ee0000 - 4608 bytes - 56f583ee - file date is 3/25/2016 14:28:20
C:\Windows\system32\wdmaud.drv, loaded at 0x72ef0000 - 172032 bytes - 56f58466 - file date is 3/25/2016 14:33:08
C:\Windows\system32\WINMM.DLL, loaded at 0x730e0000 - 194048 bytes - 56f5847e - file date is 3/25/2016 14:33:12
C:\Windows\system32\dwmapi.dll, loaded at 0x733b0000 - 67584 bytes - 56f58340 - file date is 3/25/2016 14:26:56
C:\Windows\system32\uxtheme.dll, loaded at 0x735e0000 - 249856 bytes - 56f58471 - file date is 3/25/2016 14:33:04
C:\Windows\System32\PROPSYS.dll, loaded at 0x73780000 - 988160 bytes - 56f583ff - file date is 3/25/2016 14:31:30
C:\Windows\system32\avrt.dll, loaded at 0x73b70000 - 14336 bytes - 4a5bd998 - file date is 7/13/2009 21:15:00
C:\Windows\System32\MMDevApi.dll, loaded at 0x73c90000 - 213504 bytes - 4ce7b892 - file date is 11/20/2010 17:29:08
C:\Windows\system32\PowrProf.dll, loaded at 0x73cd0000 - 145920 bytes - 56f5842c - file date is 3/25/2016 14:31:18
C:\Windows\system32\WINSPOOL.DRV, loaded at 0x74320000 - 320512 bytes - 56f58487 - file date is 3/25/2016 14:33:12
C:\Windows\system32\version.DLL, loaded at 0x74430000 - 21504 bytes - 56f58469 - file date is 3/25/2016 14:33:04
C:\Windows\system32\MSIMG32.dll, loaded at 0x74490000 - 4608 bytes - 4a5bdaa0 - file date is 7/13/2009 21:15:46
C:\Windows\system32\WINNSI.DLL, loaded at 0x744a0000 - 16384 bytes - 56f5847f - file date is 3/25/2016 14:33:12
C:\Windows\system32\IPHLPAPI.DLL, loaded at 0x744b0000 - 103424 bytes - 56f58332 - file date is 3/25/2016 14:28:12
C:\Windows\system32\Secur32.dll, loaded at 0x74fc0000 - 22016 bytes - 570c4942 - file date is 4/11/2016 21:02:12
C:\Windows\system32\SSPICLI.DLL, loaded at 0x75010000 - 99840 bytes - 570c4946 - file date is 4/11/2016 21:02:14
C:\Windows\system32\apphelp.dll, loaded at 0x75030000 - 295936 bytes - 56f582d7 - file date is 3/25/2016 14:25:30
C:\Windows\system32\CRYPTBASE.dll, loaded at 0x75080000 - 36352 bytes - 570c4318 - file date is 4/11/2016 20:36:42
C:\Windows\system32\profapi.dll, loaded at 0x751a0000 - 31744 bytes - 4a5bbf41 - file date is 7/13/2009 21:16:14
C:\Windows\system32\USERENV.dll, loaded at 0x751b0000 - 83456 bytes - 56f5846a - file date is 3/25/2016 14:33:04
C:\Windows\system32\CFGMGR32.dll, loaded at 0x751d0000 - 145920 bytes - 56f582f0 - file date is 3/25/2016 14:26:32
C:\Windows\system32\api-ms-win-downlevel-user32-l1-1-0.dll, loaded at 0x75200000 - 4096 bytes - 50f322f9 - file date is 5/28/2016 00:27:34
C:\Windows\system32\api-ms-win-downlevel-advapi32-l1-1-0.dll, loaded at 0x75210000 - 10752 bytes - 50f3243a - file date is 5/28/2016 00:27:34
C:\Windows\system32\DEVOBJ.dll, loaded at 0x75220000 - 64000 bytes - 56f58307 - file date is 3/25/2016 14:26:50
C:\Windows\system32\api-ms-win-downlevel-ole32-l1-1-0.dll, loaded at 0x75240000 - 5632 bytes - 50f322ec - file date is 5/28/2016 00:27:34
C:\Windows\system32\KERNELBASE.dll, loaded at 0x75280000 - 294400 bytes - 56f583e9 - file date is 3/25/2016 14:28:20
C:\Windows\system32\api-ms-win-downlevel-shlwapi-l1-1-0.dll, loaded at 0x752d0000 - 9728 bytes - 50f3244f - file date is 5/28/2016 00:27:34
C:\Windows\system32\api-ms-win-downlevel-normaliz-l1-1-0.dll, loaded at 0x752e0000 - 2560 bytes - 50f3244e - file date is 5/28/2016 00:27:34
C:\Windows\system32\api-ms-win-downlevel-version-l1-1-0.dll, loaded at 0x75420000 - 3072 bytes - 50f322eb - file date is 5/28/2016 00:27:34
C:\Windows\system32\SHELL32.dll, loaded at 0x754c0000 - 12881408 bytes - 5708a73f - file date is 4/9/2016 02:54:54
C:\Windows\system32\ole32.dll, loaded at 0x76110000 - 1414144 bytes - 56f583dd - file date is 3/25/2016 14:30:42
C:\Windows\system32\IMM32.DLL, loaded at 0x76270000 - 118272 bytes - 56f5831e - file date is 3/25/2016 14:28:06
C:\Windows\system32\GDI32.dll, loaded at 0x76290000 - 306176 bytes - 5708a737 - file date is 4/9/2016 02:54:46
C:\Windows\system32\LPK.dll, loaded at 0x762e0000 - 26112 bytes - 56f58355 - file date is 3/25/2016 14:28:26
C:\Windows\system32\CLBCatQ.DLL, loaded at 0x762f0000 - 522240 bytes - 56f582fb - file date is 3/25/2016 14:26:40
C:\Windows\system32\USER32.dll, loaded at 0x76380000 - 811520 bytes - 56f58468 - file date is 3/25/2016 14:33:04
C:\Windows\system32\ADVAPI32.dll, loaded at 0x76450000 - 644096 bytes - 5708a73c - file date is 4/9/2016 02:54:44
C:\Windows\system32\msvcrt.dll, loaded at 0x76500000 - 689664 bytes - 56f583cc - file date is 3/25/2016 14:29:58
C:\Windows\system32\RPCRT4.dll, loaded at 0x765b0000 - 655360 bytes - 570c4916 - file date is 4/11/2016 21:02:12
C:\Windows\system32\WININET.dll, loaded at 0x76660000 - 2121216 bytes - 571ae818 - file date is 4/22/2016 23:12:40
C:\Windows\system32\NSI.dll, loaded at 0x768d0000 - 8704 bytes - 56f58416 - file date is 3/25/2016 14:30:38
C:\Windows\system32\normaliz.DLL, loaded at 0x76960000 - 2048 bytes - 4a5bdad4 - file date is 7/13/2009 21:09:02
C:\Windows\system32\SHLWAPI.dll, loaded at 0x769c0000 - 350720 bytes - 56f58436 - file date is 3/25/2016 14:32:20
C:\Windows\system32\urlmon.dll, loaded at 0x76a20000 - 1312256 bytes - 571ae747 - file date is 4/22/2016 23:09:06
C:\Windows\system32\SETUPAPI.dll, loaded at 0x76b70000 - 1668096 bytes - 56f5842f - file date is 3/25/2016 14:32:16
C:\Windows\system32\WS2_32.dll, loaded at 0x76d40000 - 206848 bytes - 4ce7ba68 - file date is 11/20/2010 17:29:08
C:\Windows\system32\kernel32.dll, loaded at 0x76d80000 - 872448 bytes - 56f583e8 - file date is 3/25/2016 14:28:20
C:\Windows\system32\USP10.dll, loaded at 0x76e60000 - 627712 bytes - 56f5846b - file date is 3/25/2016 14:33:04
C:\Windows\system32\iertutil.dll, loaded at 0x76f00000 - 2285568 bytes - 571af423 - file date is 4/23/2016 00:04:02
C:\Windows\system32\OLEAUT32.dll, loaded at 0x77140000 - 572416 bytes - 56f583e0 - file date is 3/25/2016 14:30:42
C:\Windows\SYSTEM32\ntdll.dll, loaded at 0x771d0000 - 1310528 bytes - 5708a7a8 - file date is 4/9/2016 02:57:36
C:\Windows\system32\PSAPI.DLL, loaded at 0x77320000 - 6144 bytes - 4a5bdace - file date is 7/13/2009 21:16:14
C:\Windows\SYSTEM32\sechost.dll, loaded at 0x77330000 - 91648 bytes - 56f58445 - file date is 3/25/2016 14:32:02
C:\Windows\system32\MSCTF.dll, loaded at 0x77350000 - 829952 bytes - 56f58399 - file date is 3/25/2016 14:28:48
srb2win.rpt
Error occured on Sunday, May 29, 2016 at 14:21:30.

E:\SRB2\srb2win.exe caused an Access Violation at location 00575d6e in module E:\SRB2\srb2win.exe Writing to location 034b9250.

Registers:
eax=0000007b ebx=087ae100 ecx=00004028 edx=00000091 esi=23a845f0 edi=034b9250
eip=00575d6e esp=0022fcec ebp=00000280 iopl=0 nv up ei pl nz na po nc
cs=001b ss=0023 ds=0023 es=0023 fs=003b gs=0000 efl=00010206

Call stack:
00575D6E E:\SRB2\srb2win.exe:00575D6E
00531611 E:\SRB2\srb2win.exe:00531611
0052FE4E E:\SRB2\srb2win.exe:0052FE4E
00402BBA E:\SRB2\srb2win.exe:00402BBA
00403217 E:\SRB2\srb2win.exe:00403217
00401870 E:\SRB2\srb2win.exe:00401870
005B5CEF E:\SRB2\srb2win.exe:005B5CEF
Was using this levelpack when it crashed on the forth zone turning the camera to the right.
 
Just reporting this for a friend. But two days ago her game crash when she was on a server.
Code:
EIP=0052c65e

r_draw8.c:1223, in R_DrawTranslucentSpan_8
 
Last edited by a moderator:
Another crash! Wow! Wow!

SRB2 v2.1.15 -ERROR LOG-


srb2win caused an Access Violation in module srb2win.exe at 001b:00529b6e.
Exception handler called in main thread.
Error occurred at 5/29/2016 20:25:04.
C:\Users\couti\Dropbox\SRB2\srb2win.exe, run by couti.
2 processor(s), type 586 6.3853.
Program Memory from 0x00010000 to 0x7FFEFFFF
2048 MBytes physical memory.
Read from location 08e2412b caused an access violation.

Registers:
EAX=00000500 CS=001b EIP=00529b6e EFLGS=00010206
EBX=0ae7501e SS=0023 ESP=01aef9d8 EBP=01aefa08
ECX=09b58b08 DS=0023 ESI=08e2412b FS=003b
EDX=00000500 ES=0023 EDI=0000007f GS=0000
Command Line parameters: -width 640 -height 400 -console -server -room 33 -warp 540 -gametype 4 -file debug.wad spheres.wad -skipintro -nothokker -clientport 5030 -udpport 5030 Bytes at CS : EIP:
8a ?? 06 ?? 25 ?? ff ?? 00 ?? 00 ?? 00 ?? 01 ?? d0 ?? 03 ?? 45 ?? dc ?? 8a ?? 00 ?? 25 ?? ff ??
Stack dump:
01aef9d8: 09b58b08 000ce168 07327000 07820000 0000003e 0052d2c1 089a9078 000ce168
01aef9f8: 00ab0000 000013e0 0032ce15 00000000 01aefa28 00532c45 02abc321 0000013d
01aefa18: ff2bc27f ff21d27f 0032ce15 00000000 01aefce8 0053553e 09b58b05 00000032
01aefa38: 00000002 00000000 00000000 00000129 01aefa68 0052d2c1 025dc321 10470717
01aefa58: ff480000 ffffffff 00000000 00000000 00000000 00000000 00000000 00000000
01aefa78: ff480000 ffffffff 01e8c321 10630717 001ebbfa 000000ff 035ff8e9 000000ff
01aefa98: 01aefb08 00520d5f 01e8c321 000000b3 01aefac8 0052d2c1 0171c321 10780717
01aefab8: 000000ff 00000000 00000000 00000000 00000000 00000073 00000002 00000002
01aefad8: 01aefaf8 117fc6e0 0236c321 10510717 000000ff 00000000 000000ff 00000000
01aefaf8: 01aefb28 00520475 00000100 0000009f 01aefb28 0052d2c1 0149c321 107d0717
01aefb18: 007661a0 007661b0 035ff8e9 000000ff 01aefb98 00520d5f 0149c321 107d0717
01aefb38: 01aefc58 00523511 074793f0 000000ff 000000ff ff413cdf 035ff8e9 00000174
01aefb58: 00000100 268fb698 ff9fbf54 00000000 074e85f8 0aa06390 07470a32 00000000
01aefb78: 01aefbc8 0054badf 0aa06398 00000001 c32828c4 c2c7e818 00000000 00000000
01aefb98: 01aefcb8 00523511 0747933c 000000ff 00000a32 ff410000 035ff8e9 00000000
01aefbb8: 00000a32 00010000 00000280 00000280 00000280 00000280 0000309f 00010000
01aefbd8: 0000309f 00010000 00000280 00000280 00000280 00000280 000013e0 00010000
01aefbf8: 000013e0 ff5ece81 000013e0 f7e3bfa6 ff5e95bb 000013e7 f7e3bfa6 ff632781
01aefc18: 000013e0 f81bbfa6 ff62f043 000013e7 f81bbfa6 ffe4d87f 09b58b05 00000001
01aefc38: 0000294b 00000000 fffff947 ffffffff 01aefc68 07315e74 0a0beba8 00000002
01aefc58: 00000000 fffe0000 01900000 00000001 ffe8b17f 017bdb00 f433bfa6 f433bfa6
01aefc78: 01ebbfa6 01ebbfa6 001695bb 00000000 02000000 02000000 f7e3bfa6 f7e3bfa6
01aefc98: 00000001 00532af4 0032a4ca 00000000 ff21cbc6 ffffffff f8300000 00000000
01aefcb8: 00610000 00000002 00000002 00000226 0000001f 00000001 ffffffff 00000002
01aefcd8: 00000001 037d3780 001b01d0 00000018 01aefd18 00541b23 102b8000 0000018b
01aefcf8: 0000018d 037d3780 00017fd4 00000200 00774434 09c6d5c8 00000000 001b00ef
01aefd18: 01aefd58 0052fe53 00000478 00000001 00000500 00000320 0000001f 00000000
01aefd38: 01aefd58 004ae681 00000000 00000000 00000001 00000000 001b00ef 001b01d0
01aefd58: 01aefde8 00402bba 01797240 00000000 01aefd88 00439b0f 01797244 01782b80
01aefd78: 00000008 00000020 01aefd88 00440bcf 01aefdb8 0040dbe8 00000001 01782b80
01aefd98: 00000000 00000020 0000266a 00000001 c8a37236 00000020 001b01d0 00000002
01aefdb8: 01aefde8 0040e6f9 00000001 0000000a 00000000 00000000 037323d0 00000005
01aefdd8: 00000001 001b00ef 001b01d0 00000018 01aefe28 00403217 00000001 00000000
01aefdf8: 00010000 00000000 0538ff58 00000000 01aefe34 00000000 0000266a 0000266c
01aefe18: 00000001 0000266a 001b01d0 00000018 01aefe58 00401870 006cf0e6 006cf0b4
01aefe38: 01bf15d4 6c76bc88 6c82a67c 6c8161c0 76480ba0 00000000 01ba04a0 00000005
01aefe58: 001b00ee 005b5cef 00000018 001b01d0 01bf15d4 00000002 001b01d0 00000018
01aefe78: 001b0018 00000018 01ba04a0 00000005 01aefea8 005de8fd 00400000 00000000
01aefe98: 01bf2282 00000001 005b4b20 01aefec0 01aeff80 004013e2 01ba63b8 00000005
01aefeb8: 00000018 004013e2 00000018 01ba04a0 01ba1490 01aefef4 77eb9219 00000000
01aefed8: 0188f2d5 a622fafd cccccccc cccccccc cccccccc cccccccc cccccccc cccccccc
01aefef8: cccccccc cccccccc 005b573d 00000000 00000000 00000064 00000018 01ba04a0
01aeff18: 01aeff28 01aeff20 0023c32b 00000044 01c07220 01c076e0 01c07540 00000000
01aeff38: 00000000 00000000 00000000 00000000 00000000 00000000 00000401 00000001
01aeff58: 00000000 00000000 00010001 00000000 01890670 01890670 01aeff94 00384000
01aeff78: 01890670 01890670 01aeff94 764695f4 00384000 764695d0 a7975cd7 01aeffdc
01aeff98: 77ea241a 00384000 a622fb91 00000000 00000000 00384000 c0000005 755652f0
01aeffb8: 00000000 01aef594 a622fb91 01aeffa0 01aef594 01aeffe4 77f17220 d07b2f9d
01aeffd8: 00000000 01aeffec 77ea23e9 ffffffff 77f23a08 00000000 00000000 01890670
01aefff8: 00384000 00000000
Exception encountered during stack dump.

Module list: names, addresses, sizes, time stamps and file times:
C:\Users\couti\Dropbox\SRB2\srb2win.exe, loaded at 0x00400000 - 1869288 bytes - 00000001 - file date is 5/19/2016 19:22:36
C:\Windows\SYSTEM32\avrt.dll, loaded at 0x055d0000 - 28416 bytes - 5632d6d2 - file date is 10/30/2015 02:44:54
C:\Users\couti\Dropbox\SRB2\libFLAC-8.dll, loaded at 0x10000000 - 367104 bytes - 52067b0b - file date is 8/10/2013 14:40:28
C:\Windows\SYSTEM32\igdumd32.dll, loaded at 0x50220000 - 4931384 bytes - 4f6cbc55 - file date is 3/11/2013 15:49:34
C:\Windows\SYSTEM32\D3D9.DLL, loaded at 0x508a0000 - 1865584 bytes - 5632d2b6 - file date is 10/30/2015 02:45:10
C:\Windows\SYSTEM32\AUDIOSES.DLL, loaded at 0x5aed0000 - 405568 bytes - 56cc0bcc - file date is 2/23/2016 06:37:38
C:\Windows\SYSTEM32\ksuser.dll, loaded at 0x5e890000 - 19648 bytes - 5632d8ba - file date is 10/30/2015 02:44:54
C:\Users\couti\Dropbox\SRB2\exchndl.dll, loaded at 0x603c0000 - 392704 bytes - 41486e57 - file date is 3/15/2014 14:06:10
C:\Users\couti\Dropbox\SRB2\libintl-8.dll, loaded at 0x61cc0000 - 347910 bytes - 4d4a9e38 - file date is 3/15/2014 14:06:16
C:\Windows\system32\XAudio2_7.dll, loaded at 0x61fb0000 - 527192 bytes - 4c0641e5 - file date is 6/2/2010 04:55:30
C:\Windows\SYSTEM32\wdmaud.drv, loaded at 0x63f60000 - 205824 bytes - 5632d662 - file date is 10/30/2015 02:44:54
C:\Windows\SYSTEM32\MSACM32.dll, loaded at 0x65de0000 - 90912 bytes - 5632d73f - file date is 10/30/2015 02:44:54
C:\Users\couti\Dropbox\SRB2\smpeg2.dll, loaded at 0x66240000 - 301568 bytes - 52067b0b - file date is 8/10/2013 14:40:28
C:\Windows\SYSTEM32\sfc.dll, loaded at 0x66680000 - 3072 bytes - 5632d756 - file date is 10/30/2015 02:44:44
C:\Users\couti\Dropbox\SRB2\SDL2_mixer.dll, loaded at 0x67880000 - 184320 bytes - 52067b0b - file date is 8/10/2013 14:40:28
C:\Windows\SYSTEM32\sfc_os.DLL, loaded at 0x68960000 - 41984 bytes - 5632d745 - file date is 10/30/2015 02:44:44
C:\Windows\SYSTEM32\midimap.dll, loaded at 0x6b260000 - 18944 bytes - 5632d779 - file date is 10/30/2015 02:44:54
C:\Users\couti\Dropbox\SRB2\libvorbisfile-3.dll, loaded at 0x6b3c0000 - 62976 bytes - 52067b0b - file date is 8/10/2013 14:40:28
C:\Windows\SYSTEM32\msacm32.drv, loaded at 0x6b510000 - 24064 bytes - 5632d7f7 - file date is 10/30/2015 02:44:54
C:\Windows\SYSTEM32\VERSION.dll, loaded at 0x6b970000 - 27360 bytes - 5632d842 - file date is 10/30/2015 02:45:06
C:\Windows\System32\rasadhlp.dll, loaded at 0x6bea0000 - 13312 bytes - 5699d6b6 - file date is 2/13/2016 08:57:08
C:\Users\couti\Dropbox\SRB2\SDL2.dll, loaded at 0x6c740000 - 1007104 bytes - 53250d74 - file date is 11/11/2014 16:44:12
C:\Users\couti\Dropbox\SRB2\libmodplug-1.dll, loaded at 0x6cb80000 - 401920 bytes - 52067b0b - file date is 8/10/2013 14:40:28
C:\Windows\System32\fwpuclnt.dll, loaded at 0x6d2a0000 - 269824 bytes - 56fa11ca - file date is 3/29/2016 02:25:32
C:\Users\couti\Dropbox\SRB2\libvorbis-0.dll, loaded at 0x6d540000 - 196096 bytes - 52067b0b - file date is 8/10/2013 14:40:28
C:\Users\couti\Dropbox\SRB2\libgme.dll, loaded at 0x6e200000 - 488210 bytes - 516a380e - file date is 3/15/2014 14:05:58
C:\Windows\System32\MMDevApi.dll, loaded at 0x6e270000 - 339344 bytes - 5632d59f - file date is 10/30/2015 02:44:54
C:\Users\couti\Dropbox\SRB2\libogg-0.dll, loaded at 0x70680000 - 47104 bytes - 52067b0b - file date is 8/10/2013 14:40:28
C:\Windows\SYSTEM32\wintypes.dll, loaded at 0x70b10000 - 820704 bytes - 56a84e76 - file date is 2/13/2016 08:57:06
C:\Program Files\GbPlugin\gbpinj.dll, loaded at 0x70d00000 - 452832 bytes - 56000eca - file date is 9/22/2015 20:15:12
C:\Windows\SYSTEM32\WINSPOOL.DRV, loaded at 0x71a90000 - 400896 bytes - 56cc0bcf - file date is 2/23/2016 04:35:44
C:\Windows\SYSTEM32\IPHLPAPI.DLL, loaded at 0x71f00000 - 187488 bytes - 5632d23e - file date is 10/30/2015 02:44:58
C:\Windows\SYSTEM32\MPR.dll, loaded at 0x724a0000 - 85720 bytes - 5632d675 - file date is 10/30/2015 02:44:40
C:\Windows\system32\dwmapi.dll, loaded at 0x72e30000 - 94208 bytes - 5632d633 - file date is 10/30/2015 02:44:54
C:\Windows\System32\PROPSYS.dll, loaded at 0x735b0000 - 1355344 bytes - 5632d2ac - file date is 10/30/2015 02:44:54
C:\Windows\SYSTEM32\WINMMBASE.dll, loaded at 0x73760000 - 132744 bytes - 5632d6d0 - file date is 10/30/2015 02:44:54
C:\Windows\SYSTEM32\WINMM.DLL, loaded at 0x737b0000 - 134352 bytes - 5632d6f0 - file date is 10/30/2015 02:44:54
C:\Windows\system32\apphelp.dll, loaded at 0x73870000 - 581632 bytes - 5632d677 - file date is 10/30/2015 02:44:44
C:\Windows\System32\DEVOBJ.dll, loaded at 0x73920000 - 129160 bytes - 5632d7bd - file date is 10/30/2015 02:44:44
C:\Windows\system32\uxtheme.dll, loaded at 0x73950000 - 473600 bytes - 5632d223 - file date is 10/30/2015 02:45:08
C:\Windows\SYSTEM32\DNSAPI.dll, loaded at 0x739d0000 - 535080 bytes - 56fa2350 - file date is 3/29/2016 06:28:56
C:\Windows\SYSTEM32\ntmarta.dll, loaded at 0x742b0000 - 150840 bytes - 5632d6b0 - file date is 10/30/2015 02:44:50
C:\Windows\System32\mswsock.dll, loaded at 0x74600000 - 317280 bytes - 5632d60f - file date is 10/30/2015 02:44:58
C:\Windows\SYSTEM32\SspiCli.dll, loaded at 0x74900000 - 138960 bytes - 5632d779 - file date is 10/30/2015 02:44:58
C:\Windows\SYSTEM32\bcrypt.dll, loaded at 0x74b50000 - 117712 bytes - 5632d765 - file date is 10/30/2015 02:44:50
C:\Windows\system32\powrprof.dll, loaded at 0x74bf0000 - 270672 bytes - 5632d723 - file date is 10/30/2015 02:44:46
C:\Windows\system32\kernel.appcore.dll, loaded at 0x74c50000 - 39792 bytes - 5632d814 - file date is 10/30/2015 02:44:46
C:\Windows\system32\profapi.dll, loaded at 0x74c60000 - 54752 bytes - 5632d7db - file date is 10/30/2015 02:44:58
C:\Windows\system32\windows.storage.dll, loaded at 0x74c70000 - 5240960 bytes - 571af5bf - file date is 4/23/2016 02:09:28
C:\Windows\system32\bcryptPrimitives.dll, loaded at 0x753f0000 - 360480 bytes - 5632d6d8 - file date is 10/30/2015 02:44:58
C:\Windows\system32\KERNELBASE.dll, loaded at 0x75470000 - 1561392 bytes - 571af447 - file date is 4/23/2016 02:28:46
C:\Windows\system32\cfgmgr32.dll, loaded at 0x755f0000 - 217976 bytes - 5632d69e - file date is 10/30/2015 02:44:44
C:\Windows\system32\RPCRT4.dll, loaded at 0x75680000 - 792328 bytes - 571af643 - file date is 4/23/2016 02:26:08
C:\Windows\system32\clbcatq.dll, loaded at 0x75750000 - 526304 bytes - 5632d595 - file date is 10/30/2015 02:44:48
C:\Windows\system32\MSCTF.dll, loaded at 0x757e0000 - 1174008 bytes - 5699d2de - file date is 2/13/2016 08:57:08
C:\Windows\system32\SETUPAPI.dll, loaded at 0x75a00000 - 4268360 bytes - 5632d4e1 - file date is 10/30/2015 02:44:46
C:\Windows\system32\GDI32.dll, loaded at 0x75e10000 - 1396584 bytes - 571af70a - file date is 4/23/2016 02:00:34
C:\Windows\system32\IMM32.DLL, loaded at 0x75f70000 - 184416 bytes - 5632d449 - file date is 10/30/2015 02:44:54
C:\Windows\system32\ole32.dll, loaded at 0x75fa0000 - 957608 bytes - 56cd45dd - file date is 2/24/2016 05:11:48
C:\Windows\system32\msvcrt.dll, loaded at 0x76090000 - 773168 bytes - 5632d722 - file date is 10/30/2015 02:44:58
C:\Windows\system32\advapi32.dll, loaded at 0x76220000 - 499432 bytes - 568b1e14 - file date is 2/13/2016 08:57:12
C:\Windows\system32\USER32.dll, loaded at 0x762a0000 - 1273720 bytes - 571af603 - file date is 4/23/2016 02:00:36
C:\Windows\system32\KERNEL32.DLL, loaded at 0x76450000 - 628440 bytes - 5632d53c - file date is 10/30/2015 02:44:44
C:\Windows\system32\combase.dll, loaded at 0x764f0000 - 1824264 bytes - 56a84cbb - file date is 2/13/2016 08:57:06
C:\Windows\system32\sechost.dll, loaded at 0x766b0000 - 269616 bytes - 5632d62f - file date is 10/30/2015 02:44:58
C:\Windows\system32\WS2_32.dll, loaded at 0x76700000 - 388896 bytes - 5632d647 - file date is 10/30/2015 02:44:58
C:\Windows\system32\NSI.dll, loaded at 0x768d0000 - 20152 bytes - 5632d892 - file date is 10/30/2015 02:44:58
C:\Windows\system32\OLEAUT32.dll, loaded at 0x76900000 - 589856 bytes - 5632d5ee - file date is 10/30/2015 02:44:58
C:\Windows\system32\SHELL32.dll, loaded at 0x769a0000 - 21123320 bytes - 571af6c4 - file date is 4/23/2016 02:09:56
C:\Windows\system32\shcore.dll, loaded at 0x77da0000 - 569744 bytes - 571af425 - file date is 4/23/2016 02:09:20
C:\Windows\system32\shlwapi.dll, loaded at 0x77e30000 - 276336 bytes - 5632d541 - file date is 10/30/2015 02:45:08
C:\Windows\SYSTEM32\ntdll.dll, loaded at 0x77e80000 - 1541792 bytes - 571af2dc - file date is 4/23/2016 02:28:40
C:\Windows\AppPatch\AcLayers.DLL, loaded at 0x78d90000 - 335360 bytes - 5632d67f - file date is 10/30/2015 02:45:12

-------------------

Error occured on Sunday, May 29, 2016 at 20:25:02.

C:\Users\couti\Dropbox\SRB2\srb2win.exe caused an Access Violation at location 00529b6e in module C:\Users\couti\Dropbox\SRB2\srb2win.exe Reading from location 08e2412b.

Registers:
eax=00000500 ebx=0ae7501e ecx=09b58b08 edx=00000500 esi=08e2412b edi=0000007f
eip=00529b6e esp=01aef9d8 ebp=01aefa08 iopl=0 nv up ei pl nz na po nc
cs=001b ss=0023 ds=0023 es=0023 fs=003b gs=0000 efl=00010206

Call stack:
00529B6E C:\Users\couti\Dropbox\SRB2\srb2win.exe:00529B6E
00532C45 C:\Users\couti\Dropbox\SRB2\srb2win.exe:00532C45
0053553E C:\Users\couti\Dropbox\SRB2\srb2win.exe:0053553E
00541B23 C:\Users\couti\Dropbox\SRB2\srb2win.exe:00541B23
0052FE53 C:\Users\couti\Dropbox\SRB2\srb2win.exe:0052FE53
00402BBA C:\Users\couti\Dropbox\SRB2\srb2win.exe:00402BBA
00403217 C:\Users\couti\Dropbox\SRB2\srb2win.exe:00403217
00401870 C:\Users\couti\Dropbox\SRB2\srb2win.exe:00401870
005B5CEF C:\Users\couti\Dropbox\SRB2\srb2win.exe:005B5CEF
005DE8FD C:\Users\couti\Dropbox\SRB2\srb2win.exe:005DE8FD
004013E2 C:\Users\couti\Dropbox\SRB2\srb2win.exe:004013E2
764695F4 C:\Windows\system32\KERNEL32.DLL:764695F4 BaseThreadInitThunk
77EA241A C:\Windows\SYSTEM32\ntdll.dll:77EA241A RtlCheckPortableOperatingSystem
77EA23E9 C:\Windows\SYSTEM32\ntdll.dll:77EA23E9 RtlCheckPortableOperatingSystem

Playing a multiplayer game in Team Match.

r_draw8.c:311, in R_DrawTranslucentColumn_8
 
Last edited:
Occasional crash while rendering wedge-shaped FOFs (e.g., sloped so that at one end the height of the FOF is 0) seems to only happen from extreme angles.

Test WAD: https://drive.google.com/file/d/0B7TpoaG995nsOXB6aXJWRUJJa2s/view?usp=sharing

I took four reports that gave two unique EIPs:
For whatever reason this one didn't produce errorlog.txt
srb2win.rpt:
Code:
-------------------

Error occured on Monday, June 27, 2016 at 00:18:02.

F:\SRB2\srb2win-release.exe caused an Access Violation at location 00531521 in module F:\SRB2\srb2win-release.exe Reading from location 00000044.

Registers:
eax=00000028 ebx=002e005b ecx=0000ffff edx=00000031 esi=002e00a8 edi=00000006
eip=00531521 esp=0028fd00 ebp=0028fd28 iopl=0         nv up ei pl nz na po nc
cs=0023  ss=002b  ds=002b  es=002b  fs=0053  gs=002b             efl=00010206

Call stack:
00531521  F:\SRB2\srb2win-release.exe:00531521
0052FE4E  F:\SRB2\srb2win-release.exe:0052FE4E
00402BBA  F:\SRB2\srb2win-release.exe:00402BBA
00403217  F:\SRB2\srb2win-release.exe:00403217
00401870  F:\SRB2\srb2win-release.exe:00401870
005B5CEF  F:\SRB2\srb2win-release.exe:005B5CEF
srb2win.rpt:
Code:
-------------------

Error occured on Monday, June 27, 2016 at 00:19:58.

F:\SRB2\srb2win-release.exe caused an Access Violation at location 00575d6e in module F:\SRB2\srb2win-release.exe Writing to location ffff7ec3.

Registers:
eax=00000027 ebx=0764c300 ecx=00000142 edx=0000004b esi=0768b950 edi=ffff7ec3
eip=00575d6e esp=0028f60c ebp=00000500 iopl=0         nv up ei pl zr na po nc
cs=0023  ss=002b  ds=002b  es=002b  fs=0053  gs=002b             efl=00010246

Call stack:
00575D6E  F:\SRB2\srb2win-release.exe:00575D6E
0052CD06  F:\SRB2\srb2win-release.exe:0052CD06
005366F7  F:\SRB2\srb2win-release.exe:005366F7
0053C533  F:\SRB2\srb2win-release.exe:0053C533
005204B8  F:\SRB2\srb2win-release.exe:005204B8
005214FF  F:\SRB2\srb2win-release.exe:005214FF
00523511  F:\SRB2\srb2win-release.exe:00523511
00523D12  F:\SRB2\srb2win-release.exe:00523D12
00523C70  F:\SRB2\srb2win-release.exe:00523C70
00523C70  F:\SRB2\srb2win-release.exe:00523C70
00523C70  F:\SRB2\srb2win-release.exe:00523C70
00523C70  F:\SRB2\srb2win-release.exe:00523C70
00523C70  F:\SRB2\srb2win-release.exe:00523C70
0052FCEC  F:\SRB2\srb2win-release.exe:0052FCEC
00402BBA  F:\SRB2\srb2win-release.exe:00402BBA
00403217  F:\SRB2\srb2win-release.exe:00403217
00401870  F:\SRB2\srb2win-release.exe:00401870
005B5CEF  F:\SRB2\srb2win-release.exe:005B5CEF
errorlog.txt:
Code:
Email Sonic Team Junior so we can fix the bugs
Make sure you tell us what you were doing to cause the crash, and if possible, record a demo!




SRB2 v2.1.15 -ERROR LOG-


srb2win-release caused an Access Violation in module srb2win-release.exe at 0023:00575d6e.
Exception handler called in main thread.
Error occurred at 6/27/2016 00:20:00.
F:\SRB2\srb2win-release.exe, run by krishaq.
2 processor(s), type 586 6.17665.
Program Memory from 0x00010000 to 0x7FFEFFFF
0 MBytes physical memory.
Write to location ffff7ec3 caused an access violation.

Registers:
EAX=00000027 CS=0023 EIP=00575d6e EFLGS=00010246
EBX=0764c300 SS=002b ESP=0028f60c EBP=00000500
ECX=00000142 DS=002b ESI=0768b950 FS=0053
EDX=0000004b ES=002b EDI=ffff7ec3 GS=002b
Command Line parameters: -file weirdfofs.wad -warp 1 -nomusic Bytes at CS : EIP:
88 ?? 07 ?? 0f ?? b6 ?? 14 ?? 16 ?? 0f ?? b6 ?? 14 ?? 13 ?? 88 ?? 14 ?? 2f ?? 8d ?? 3c ?? 6f ?? 
Stack dump:
0028f60c: 008c523f 000056a1 000000ff 0028f648 0052cd06 000000f3 01d6005c 0000001f
0028f62c: 0000013c 0000013c 00000080 fffffffb 00000002 00000000 01bb0000 0028f738
0028f64c: 005366f7 000000f3 0000000c 00000a38 00000500 00008000 00000500 00000280
0028f66c: 00000500 00000280 00002b50 00008000 000056a1 00008000 00000500 00000280
0028f68c: 00000500 00000280 00002b50 00008000 000056a1 ec287943 00000000 000000ff
0028f6ac: 00297597 00000000 0028f6d4 76df9c39 07794530 00000e80 00000000 0000007e
0028f6cc: 077953b0 f847e835 0074d72d ffef1657 07794530 0000004d 00000298 0000008c
0028f6ec: 00000020 017bdb00 00000000 0028f738 00531359 0779452e 00000002 00000297
0028f70c: 008c523f 0000013c 00000297 00000000 00000002 0000035d 00000346 00000346
0028f72c: 0013cd57 000000ff 00000000 0028fa48 0053c533 077935f8 00000346 00000346
0028f74c: 00000000 00000000 00000000 00000000 000000a8 000000ff fc14238c 03d2bfa7
0028f76c: 037f0c7f 00000000 03d2bfa7 00000000 00000000 03d2bfa7 00000000 002a181b
0028f78c: 00005d26 0073affe 002a9f39 00005e51 0073affe 002a181b 00005d26 0073affe
0028f7ac: 002a9f39 00005e51 0073affe 0028f7d8 004a83f3 01b53260 0024734b 00009c56
0028f7cc: 003baffe 0027c6cf 00005af8 006feffe 0028413e 00005c10 006feffe 0024734b
0028f7ec: 00009c56 003baffe 00154bd8 00005b57 003baffe 002702eb 00005938 006feffe
0028f80c: 00277aba 00005a4a 006feffe 00154bd8 00005b57 003baffe 001432a9 000056a1
0028f82c: 003baffe 00000000 003baffe 00000000 0028413e 00005c10 006feffe 001432a9
0028f84c: 000056a1 003baffe 00000000 003baffe 00000000 0026dd8a 000057c2 00715ffe
0028f86c: 002754ab 000058cf 00715ffe 002846cb 000056a1 007705c6 002846cb 000056a1
0028f88c: 007705c6 002604f6 000056a1 00705a36 002604f6 000056a1 00705a36 ffffffcc
0028f8ac: fffbaffe 0000000c fffe77b1 00005af8 fffbaffe 00000000 007baffe 00000000
0028f8cc: 0029dae9 000056a1 007baffe 00000000 fffbaffe 00000000 fffe8a69 000056a1
0028f8ec: fffbaffe 079ec58c 0000ff87 07a2614c 0758c65d 0000ff81 075c6d38 03bc0000
0028f90c: 0776ffe5 0776ffe5 c27fe500 c2b16510 07634cec 01b93d68 c7500000 c2800000
0028f92c: 0074d72d 00000f4e 07a2614c 19556f50 0705a362 0705a362 c27fe500 c2b16510
0028f94c: 07634cec 01b93c90 c75b4000 c2800000 00000000 00000000 00000000 00000000
0028f96c: bf7f8700 40000000 bf446c00 c267111f bd71c000 bf7f8d00 00000000 00000000
0028f98c: 41500000 bf446c00 c267111f bd71c000 bf7f8d00 00000000 00000000 41500000
0028f9ac: 426f0a80 03440000 03440000 00000ae3 00000adf 0000ff87 07a2614c 0271aeac
0028f9cc: 03bc0000 076713e0 00000000 007705c6 007705c6 035b0000 035b0000 03a50000
0028f9ec: 03a50000 035b0007 035b0007 03a4fff9 03a4fff9 07671458 00000000 00766180
0028fa0c: 00000000 00000000 00000000 00000000 00000001 00000002 00000000 00000020
0028fa2c: 3d8e5154 000ac759 079edc74 00766180 00000001 000000ff 00000000 0028fa78
0028fa4c: 005204b8 00000346 00000346 0028fa78 0052d319 007538a7 07abdc74 00766180
0028fa6c: 00766180 00000000 00000375 0028fae8 005214ff 00000346 00000346 00000000
0028fa8c: 00000000 00000001 00000000 00000f00 00010000 04000000 00000347 00000346
0028faac: 2c3a6efc 00051328 00000001 0028fbd8 00000000 00000000 00e00000 00070000
0028facc: ffff0000 04000000 0013ec4b 00000678 00000679 00070000 00000001 0028fc08
0028faec: 00523511 01b55da4 000000ff 03b90000 007538a7 03ebdc74 00000000 00000000
0028fb0c: 00000000 00000000 00000001 0028fc38 00523511 00000000 00000000 00000000
0028fb2c: 00000000 03ebdc74 00000000 00000000 000000ff 000000ff 0000f372 0028fb18
0028fb4c: 0028fbb4 76c56d91 76c56d51 00000000 00000000 ffd86900 0000003a 0028fb88
0028fb6c: 0052d4a4 001a9c53 039c6e3a 00290000 00010000 03b08000 fe74218c 04000000
0028fb8c: fc000000 00000001 00000037 0028fbb8 0052d4a4 001a9c53 03d5ee3a 2d7fba76
0028fbac: 00000000 0393ec4b 19556f50 04000000 fc000000 00000000 01b46844 001a9c53
0028fbcc: 03d5ee3a 0000035d 00000346 2d8efee2 00000000 00000000 00000000 01b55da4
0028fbec: 00000003 00766188 0000064e 00000679 0035005b 003500a8 00000006 0028fc38
0028fc0c: 00523d12 00000013 fc14238c 01b549a8 00000000 00766188 00000624 00000000
0028fc2c: 01b549a8 00000377 0035005b 0028fc68 00523c70 00008013 fc14238c 01b549dc
0028fc4c: 00000000 00766188 0000061e 00000000 01b549dc 00000000 0035005b 0028fc98
0028fc6c: 00523c70 0000000f fc14238c 01b54a78 0028fc88 005025f0 01b573d8 00000001
0028fc8c: 01b54a78 01b573d8 0035005b 0028fcc8 00523c70 00000012 fc14238c 01b54b7c
0028fcac: 00000000 9012e680 00000000 00000000 01b54b7c 9d94ac1c 0035005b 0028fcf8
0028fccc: 00523c70 00000017 fc14238c 01b54c18 00000108 0035005b 00002792 00000000
0028fcec: 01b54c18 003500a8 0035005b 0028fd28 00523c70 0000001a fc14238c 01b54e20
0028fd0c: 02800000 00000108 000001d4 00000000 01b54e20 00729de0 0035005b 0028fd68
0028fd2c: 0052fcec 00000024 00000000 00001400 00000c80 00000085 00000000 0028fd68
0028fd4c: 004ae681 00000000 00000000 00000000 00000050 0035005b 003500a8 0028fdf8
0028fd6c: 00402bba 01797240 00000000 0028fd98 00439b0f 01797244 01784080 00000008
0028fd8c: 00000020 0028fd98 00440bcf 0028fdc8 0040dbdf 00000001 01784080 00000000
0028fdac: 00000020 00000108 00000001 03d6016b 00000020 003500a8 00000017 0028fdf8
0028fdcc: 0040e6f9 00000001 00001982 00000000 00000000 00000000 01b573d8 00000020
0028fdec: 0035005b 003500a8 00000006 0028fe38 00403217 00000001 00000000 00010000
0028fe0c: 00000000 01b7dc20 00000000 0028fe44 00000000 00000108 0000010a 00000001
0028fe2c: 00000108 003500a8 00000006 0028fe68 00401870 006cf0e6 758c4a25 019a1a48
0028fe4c: 6c76bc88 6c82a67c 6c8161c0 758c4a25 00000000 01bb13b8 00000009 0035005b
0028fe6c: 005b5cef 00000006 003500a8 019a1a48 00000002 003500a8 00000006 00350018
0028fe8c: 00000006 01bb13b8 00000009 0028feb8 005de8fd 00400000 00000000 019a2ccf
0028feac: 00000001 005b4b20 0028fed0 0028ff88 004013e2 01bb2ac0 00000009 00000006
0028fecc: 004013e2 00000006 01bb13b8 01bb1660 a72c581a cccccccc cccccccc cccccccc
0028feec: cccccccc cccccccc cccccccc cccccccc cccccccc 00000000 758c4327 005b573d
0028ff0c: 00000000 00000000 0000001c 00000006 01bb13b8 7797fde5 779e8514 0028ff58
0028ff2c: 00000044 019b87b8 019bcaa8 019c0cb8 00000000 00000000 00000000 00000000
0028ff4c: 00000000 00000000 00000000 00000001 00000001 00000000 ffffffff ffffffff
0028ff6c: ffffffff 00000000 00000000 0028ff94 7efde000 00000000 00000000 0028ff94
0028ff8c: 758c338a 7efde000 0028ffd4 77999a02 7efde000 d09c6e1e 00000000 00000000
0028ffac: 7efde000 c0000005 758e770f 758e770f 0028ffa0 0028f058 ffffffff 779d6325
0028ffcc: a72c577a 00000000 0028ffec 779999d5 01890670 7efde000 00000000 00000000
0028ffec: 00000000 00000000 01890670 7efde000 00000000
Exception encountered during stack dump.

	Module list: names, addresses, sizes, time stamps and file times:
F:\SRB2\srb2win-release.exe, loaded at 0x00400000 - 1869288 bytes - 00000001 - file date is 5/18/2016 23:05:48
F:\SRB2\libFLAC-8.dll, loaded at 0x10000000 - 367104 bytes - 52067b0b - file date is 8/10/2013 13:40:28
F:\SRB2\exchndl.dll, loaded at 0x603c0000 - 392704 bytes - 41486e57 - file date is 3/15/2014 13:06:10
F:\SRB2\libintl-8.dll, loaded at 0x61cc0000 - 347910 bytes - 4d4a9e38 - file date is 3/15/2014 13:06:18
C:\Windows\System32\PROPSYS.dll, loaded at 0x64380000 - 988160 bytes - 4ce7b983 - file date is 11/20/2010 23:24:10
F:\SRB2\smpeg2.dll, loaded at 0x66240000 - 301568 bytes - 52067b0b - file date is 8/10/2013 13:40:28
F:\SRB2\SDL2_mixer.dll, loaded at 0x67880000 - 184320 bytes - 52067b0b - file date is 8/10/2013 13:40:28
C:\Windows\system32\WINNSI.DLL, loaded at 0x69ad0000 - 16896 bytes - 4a5bdb43 - file date is 7/13/2009 21:16:20
C:\Windows\system32\IPHLPAPI.DLL, loaded at 0x69ae0000 - 103936 bytes - 4ce7b859 - file date is 11/20/2010 23:24:34
F:\SRB2\libvorbisfile-3.dll, loaded at 0x6b3c0000 - 62976 bytes - 52067b0b - file date is 8/10/2013 13:40:28
F:\SRB2\SDL2.dll, loaded at 0x6c740000 - 1007104 bytes - 53250d74 - file date is 11/11/2014 15:44:12
F:\SRB2\libmodplug-1.dll, loaded at 0x6cb80000 - 401920 bytes - 52067b0b - file date is 8/10/2013 13:40:28
F:\SRB2\libvorbis-0.dll, loaded at 0x6d540000 - 196096 bytes - 52067b0b - file date is 8/10/2013 13:40:28
F:\SRB2\libgme.dll, loaded at 0x6e200000 - 488210 bytes - 516a380e - file date is 3/15/2014 13:05:58
F:\SRB2\libogg-0.dll, loaded at 0x70680000 - 47104 bytes - 52067b0b - file date is 8/10/2013 13:40:28
C:\Windows\system32\D3D9.DLL, loaded at 0x732e0000 - 1828352 bytes - 4ce7b7b3 - file date is 11/20/2010 23:24:24
C:\Windows\system32\wdmaud.drv, loaded at 0x736f0000 - 172032 bytes - 4ce7ba26 - file date is 11/20/2010 23:24:02
C:\Windows\system32\AUDIOSES.DLL, loaded at 0x73720000 - 195584 bytes - 54d03ba0 - file date is 2/2/2015 23:12:14
C:\Windows\SysWow64\XAudio2_7.dll, loaded at 0x73760000 - 527192 bytes - 4c0641e5 - file date is 6/2/2010 05:55:30
C:\Windows\system32\midimap.dll, loaded at 0x73af0000 - 16896 bytes - 4a5bda84 - file date is 7/13/2009 21:15:42
C:\Windows\system32\MSACM32.dll, loaded at 0x73d40000 - 72192 bytes - 4a5bda4e - file date is 7/13/2009 21:15:44
C:\Windows\system32\VERSION.dll, loaded at 0x73d60000 - 21504 bytes - 4a5bdb2b - file date is 7/13/2009 21:16:18
C:\Windows\system32\ksuser.dll, loaded at 0x73f30000 - 4608 bytes - 56675155 - file date is 12/8/2015 17:53:48
C:\Windows\system32\msacm32.drv, loaded at 0x73f40000 - 20992 bytes - 4a5bda4f - file date is 7/13/2009 21:14:10
C:\Windows\System32\MMDevApi.dll, loaded at 0x73f70000 - 213504 bytes - 4ce7b892 - file date is 11/20/2010 23:23:52
C:\Windows\system32\prl_umdd.dll, loaded at 0x73fb0000 - 122600 bytes - 54487769 - file date is 10/23/2014 01:52:30
C:\Windows\system32\d3d8thk.dll, loaded at 0x73fd0000 - 11264 bytes - 4a5bd9a8 - file date is 7/13/2009 21:15:10
C:\Windows\system32\uxtheme.dll, loaded at 0x73ff0000 - 245760 bytes - 4a5bdb3c - file date is 7/13/2009 21:11:26
C:\Windows\system32\avrt.dll, loaded at 0x74dc0000 - 14336 bytes - 4a5bd998 - file date is 7/13/2009 21:15:00
C:\Windows\system32\WINMM.DLL, loaded at 0x74dd0000 - 194048 bytes - 4ce7ba42 - file date is 11/20/2010 23:24:18
C:\Windows\system32\dwmapi.dll, loaded at 0x75210000 - 67584 bytes - 559eb13d - file date is 7/9/2015 13:42:56
C:\Windows\syswow64\CRYPTBASE.dll, loaded at 0x752a0000 - 36352 bytes - 56a1b56b - file date is 1/22/2016 00:51:56
C:\Windows\syswow64\SspiCli.dll, loaded at 0x752b0000 - 96768 bytes - 56a1c6fa - file date is 1/22/2016 02:06:52
C:\Windows\syswow64\LPK.dll, loaded at 0x75320000 - 25600 bytes - 55e66336 - file date is 9/1/2015 22:47:20
C:\Windows\syswow64\RPCRT4.dll, loaded at 0x75610000 - 665088 bytes - 56a1c6fa - file date is 1/22/2016 02:06:52
C:\Windows\syswow64\CFGMGR32.dll, loaded at 0x75730000 - 145920 bytes - 4ddb8851 - file date is 5/24/2011 06:39:40
C:\Windows\syswow64\kernel32.dll, loaded at 0x758b0000 - 1114112 bytes - 56a1c79d - file date is 1/22/2016 02:06:52
C:\Windows\syswow64\SETUPAPI.dll, loaded at 0x759c0000 - 1667584 bytes - 4ce7b9d9 - file date is 11/20/2010 23:23:52
C:\Windows\syswow64\SHELL32.DLL, loaded at 0x75b60000 - 12877824 bytes - 56a1c6c7 - file date is 1/22/2016 02:06:00
C:\Windows\syswow64\ADVAPI32.dll, loaded at 0x76840000 - 642560 bytes - 56a1c533 - file date is 1/22/2016 01:59:08
C:\Windows\syswow64\NSI.dll, loaded at 0x76970000 - 8704 bytes - 4a5bdad9 - file date is 7/13/2009 21:16:12
C:\Windows\syswow64\DEVOBJ.dll, loaded at 0x76bc0000 - 64512 bytes - 4ddb887d - file date is 5/24/2011 06:40:06
C:\Windows\syswow64\SHLWAPI.dll, loaded at 0x76be0000 - 350208 bytes - 4ce7b9e2 - file date is 11/20/2010 23:23:50
C:\Windows\syswow64\USER32.dll, loaded at 0x76c40000 - 833024 bytes - 56423973 - file date is 11/10/2015 14:37:40
C:\Windows\syswow64\OLEAUT32.dll, loaded at 0x76d40000 - 571904 bytes - 54754919 - file date is 11/25/2014 23:32:06
C:\Windows\syswow64\msvcrt.dll, loaded at 0x76df0000 - 690688 bytes - 4eeaf722 - file date is 12/16/2011 03:53:00
C:\Windows\syswow64\USP10.dll, loaded at 0x77020000 - 627712 bytes - 563902f2 - file date is 11/3/2015 14:56:20
C:\Windows\syswow64\CLBCatQ.DLL, loaded at 0x770c0000 - 522240 bytes - 4a5bd9b1 - file date is 7/13/2009 21:15:04
C:\Windows\syswow64\ole32.dll, loaded at 0x77150000 - 1413632 bytes - 569a8dc2 - file date is 1/16/2016 14:36:38
C:\Windows\SysWOW64\sechost.dll, loaded at 0x772b0000 - 92160 bytes - 556362e4 - file date is 5/25/2015 14:01:40
C:\Windows\syswow64\KERNELBASE.dll, loaded at 0x772e0000 - 275456 bytes - 56a1c79e - file date is 1/22/2016 02:06:52
C:\Windows\syswow64\IMM32.DLL, loaded at 0x77330000 - 119808 bytes - 4ce7ba53 - file date is 11/20/2010 23:24:26
C:\Windows\syswow64\WS2_32.dll, loaded at 0x773c0000 - 206848 bytes - 4ce7ba68 - file date is 11/20/2010 23:23:56
C:\Windows\syswow64\MSCTF.dll, loaded at 0x77400000 - 828928 bytes - 54b9c914 - file date is 1/16/2015 22:30:44
C:\Windows\syswow64\GDI32.dll, loaded at 0x774d0000 - 312320 bytes - 56675135 - file date is 12/8/2015 17:52:54
C:\Windows\SysWOW64\ntdll.dll, loaded at 0x77960000 - 1314328 bytes - 56a1c6fa - file date is 1/22/2016 02:09:42
srb2win.rpt:
Code:
-------------------

Error occured on Monday, June 27, 2016 at 00:20:49.

F:\SRB2\srb2win-release.exe caused an Access Violation at location 00575d6e in module F:\SRB2\srb2win-release.exe Writing to location ffffd22d.

Registers:
eax=00000027 ebx=075fc300 ecx=00000206 edx=00000079 esi=0763b350 edi=ffffd22d
eip=00575d6e esp=0028f63c ebp=00000500 iopl=0         nv up ei pl zr na po nc
cs=0023  ss=002b  ds=002b  es=002b  fs=0053  gs=002b             efl=00010246

Call stack:
00575D6E  F:\SRB2\srb2win-release.exe:00575D6E
0052CD06  F:\SRB2\srb2win-release.exe:0052CD06
005366F7  F:\SRB2\srb2win-release.exe:005366F7
0053C533  F:\SRB2\srb2win-release.exe:0053C533
005204B8  F:\SRB2\srb2win-release.exe:005204B8
005214FF  F:\SRB2\srb2win-release.exe:005214FF
00523511  F:\SRB2\srb2win-release.exe:00523511
00523D12  F:\SRB2\srb2win-release.exe:00523D12
00523C70  F:\SRB2\srb2win-release.exe:00523C70
00523C70  F:\SRB2\srb2win-release.exe:00523C70
00523C70  F:\SRB2\srb2win-release.exe:00523C70
00523C70  F:\SRB2\srb2win-release.exe:00523C70
0052FCEC  F:\SRB2\srb2win-release.exe:0052FCEC
00402BBA  F:\SRB2\srb2win-release.exe:00402BBA
00403217  F:\SRB2\srb2win-release.exe:00403217
00401870  F:\SRB2\srb2win-release.exe:00401870
005B5CEF  F:\SRB2\srb2win-release.exe:005B5CEF
errorlog.txt:
Code:
Email Sonic Team Junior so we can fix the bugs
Make sure you tell us what you were doing to cause the crash, and if possible, record a demo!




SRB2 v2.1.15 -ERROR LOG-


srb2win-release caused an Access Violation in module srb2win-release.exe at 0023:00575d6e.
Exception handler called in main thread.
Error occurred at 6/27/2016 00:20:50.
F:\SRB2\srb2win-release.exe, run by krishaq.
2 processor(s), type 586 6.17665.
Program Memory from 0x00010000 to 0x7FFEFFFF
0 MBytes physical memory.
Write to location ffffd22d caused an access violation.

Registers:
EAX=00000027 CS=0023 EIP=00575d6e EFLGS=00010246
EBX=075fc300 SS=002b ESP=0028f63c EBP=00000500
ECX=00000206 DS=002b ESI=0763b350 FS=0053
EDX=00000079 ES=002b EDI=ffffd22d GS=002b
Command Line parameters: -file weirdfofs.wad -warp 1 -nomusic Bytes at CS : EIP:
88 ?? 07 ?? 0f ?? b6 ?? 14 ?? 16 ?? 0f ?? b6 ?? 14 ?? 13 ?? 88 ?? 14 ?? 2f ?? 8d ?? 3c ?? 6f ?? 
Stack dump:
0028f63c: 0080037a 0000928c 075e4cc8 0028f678 0052cd06 000000f3 0230004d 00000003
0028f65c: 00000200 00000200 00000080 fffffffb 00000002 00000000 00020000 0028f768
0028f67c: 005366f7 000000f3 00000000 00002d30 00000500 00008000 00000500 00000280
0028f69c: 00000500 00000280 00004946 00008000 0000928c 00008000 00000500 00000280
0028f6bc: 00000500 00000280 00004946 00008000 0000928c 00000000 fff99129 00000000
0028f6dc: 00000000 fff99129 00000000 00000000 fff99129 00000000 00000000 fff99129
0028f6fc: 00000000 fbb920f1 01329c7f fffc6ddb 0042cc56 00000164 00000320 00000080
0028f71c: 00000020 017bdb00 075e4cc8 00000000 07612648 000000ff 00000002 0000031f
0028f73c: 0080037a 00000200 0000031f 00000000 00000004 0000031b 00000000 000002f7
0028f75c: 002011af 000000ff 00000000 0028fa78 0053c533 0778bcf8 000002f6 000002f7
0028f77c: 00000000 00000000 00000000 00000000 00000194 000000ff ff78e6e8 03c25431
0028f79c: 037f0c7f 00000000 03c25431 00000000 00000000 03bbda92 00000000 001baf1f
0028f7bc: 0000a708 002a6e10 001c4399 0000a60f 002b9294 0019f59b 0000a708 0027c95f
0028f7dc: 00191129 0000a60f 0026a4da 001c345e 0000a50b 002bbf99 001c4b8f 0000a125
0028f7fc: 002cf361 0016eb24 00009d0d 00255bb7 00178c65 0000a15e 00255bb7 ffe1b088
0028f81c: 0002090f fff11bb7 fff6a232 0000a104 fff11bb7 00000b2b fff11bb7 ffffff40
0028f83c: 004b10b2 019a3c38 003600a8 fff6a232 0000a104 fff11bb7 fff76e51 0000934f
0028f85c: fff11bb7 00000b57 fff11bb7 ffffff3d 001c46a6 0000a15e 002cdbb7 fff76e51
0028f87c: 0000934f fff11bb7 00000b57 fff11bb7 ffffff3d 0016313a 00009813 00255bb7
0028f89c: 0016c6f4 00009c15 00255bb7 00173af3 0000934f 00285ee7 0017c4ff 0000928c
0028f8bc: 002985c5 0018143f 0000934f 0029d887 00174b94 0000928c 0028b1aa 00000000
0028f8dc: ffb11bb7 00000000 ffd17ce4 000096ee ffb11bb7 ffffda97 00311bb7 ffffff3d
0028f8fc: 001c4211 0000934f 00311bb7 00003c17 ffb11bb7 ffffff3d ffd29a91 0000934f
0028f91c: ffb11bb7 0439db95 0000f63f 0464b5e8 00f2fec8 00003817 04550e5e 0faccef6
0028f93c: 029c438e 029c438e c0484b40 c384df83 075e4d4c 019e3d68 44500000 00000000
0028f95c: 01329c7f 000045ca 0464b5e8 0faccef6 028b1aa1 029d8875 c0350900 c3874611
0028f97c: 075e4cec 019e3c90 44500000 00000000 00000000 00000000 00000000 00000000
0028f99c: bf79dd00 40000000 c0605a00 c381bf62 be8a1000 bf768400 00000000 00000000
0028f9bc: 41500000 c0619540 c38194fb be8ad200 bf766800 00000000 00000000 41500000
0028f9dc: 4b2686a0 03440000 03440000 00001454 0000144c 0000f63f 0464b5e8 0b4340e0
0028f9fc: 03bc0000 076213e0 00000000 002985c5 00285ee7 00000000 00000000 00000000
0028fa1c: 00000001 035b0007 00000000 00000020 36ff7c30 07621458 00000000 00766180
0028fa3c: 00000000 00000000 00000000 00000000 00000001 00000002 00000000 00000020
0028fa5c: 34bcbf20 00b34f65 043a1918 00766180 00000001 000000ff 00000000 0028faa8
0028fa7c: 005204b8 000002f6 000002f7 0028faa8 0052d319 01334f65 04471918 00766180
0028fa9c: 00766180 00000000 0000031c 0028fb18 005214ff 000002f6 000002f7 00000000
0028fabc: 00000000 00000001 00000000 00000f00 00010000 04000000 000002f8 000002f6
0028fadc: 277c4c20 00210660 00000001 0028fc08 00000000 00000000 00e00000 00070000
0028fafc: ffff0000 04000000 0013ec4b 00000710 00000714 00070000 00000001 0028fc38
0028fb1c: 00523511 019a5da4 000000ff 03b90000 01334f65 00871918 00000000 00000000
0028fb3c: 00000000 00000000 00000001 0028fc68 00523511 00000000 00000000 00000000
0028fb5c: 00000000 00871918 00000000 00000000 000000ff 000000ff 0000ea6f 00290000
0028fb7c: 00010000 00290000 00000000 00000000 00000000 00000000 000001fc 0028fbb8
0028fb9c: 0052d4a4 0079a7b2 01ea0c8c 00140000 00010000 03b08000 00e48df6 04000000
0028fbbc: fc000000 00000000 000001c7 0028fbe8 0052d4a4 0079a7b2 02238c8c 28b67cf0
0028fbdc: 00000000 0393ec4b 0faccef6 04000000 fc000000 00000000 01996844 0079a7b2
0028fbfc: 02238c8c 0000031b 000002f6 29b643f0 00000000 00000000 00000000 019a5da4
0028fc1c: 00000003 00766188 000006c9 00000714 0036005b 003600a8 00000006 0028fc68
0028fc3c: 00523d12 00000013 ff78e6e8 019a49a8 00000000 00766188 00000673 00000000
0028fc5c: 019a49a8 00000353 0036005b 0028fc98 00523c70 00008013 ff78e6e8 019a49dc
0028fc7c: 00000000 00766188 00000660 00000000 019a49dc 019a73d8 0036005b 0028fcc8
0028fc9c: 00523c70 0000000f ff78e6e8 019a4a78 00000001 8c620240 00000001 00000001
0028fcbc: 019a4a78 b18b3276 0036005b 0028fcf8 00523c70 00000012 ff78e6e8 019a4c18
0028fcdc: 000002d7 0036005b 0036005b 00000000 019a4c18 003600a8 0036005b 0028fd28
0028fcfc: 00523c70 0000001a ff78e6e8 019a4e20 02800000 000002d7 00000253 00000000
0028fd1c: 019a4e20 00729048 0036005b 0028fd68 0052fcec 00000024 00000000 00001400
0028fd3c: 00000c80 00000082 00000000 0028fd68 004ae681 00000000 00000000 00000000
0028fd5c: 00000000 0036005b 003600a8 0028fdf8 00402bba 01797240 00000000 0028fd98
0028fd7c: 00439b0f 01797244 01782d80 00000008 00000020 003600a8 00000006 0028fdc8
0028fd9c: 0040dbdf 00000001 01782d80 00000000 00000020 000002d7 00000001 00b86cf3
0028fdbc: 00000020 003600a8 00000004 0028fdf8 0040e6f9 00000001 00001982 00000000
0028fddc: 00000000 00000000 019a73d8 00000020 0036005b 003600a8 00000006 0028fe38
0028fdfc: 00403217 00000001 00000000 00010000 00000000 019cdc20 00000000 0028fe44
0028fe1c: 00000000 000002d7 000002d9 00000001 000002d7 003600a8 00000006 0028fe68
0028fe3c: 00401870 006cf0e6 758c4a25 01c51a48 6c76bc88 6c82a67c 6c8161c0 758c4a25
0028fe5c: 00000000 000213b8 00000009 0036005b 005b5cef 00000006 003600a8 01c51a48
0028fe7c: 00000002 003600a8 00000006 00360018 00000006 000213b8 00000009 0028feb8
0028fe9c: 005de8fd 00400000 00000000 01c52ccf 00000001 005b4b20 0028fed0 0028ff88
0028febc: 004013e2 00022ac0 00000009 00000006 004013e2 00000006 000213b8 00021660
0028fedc: a72dab8f cccccccc cccccccc cccccccc cccccccc cccccccc cccccccc cccccccc
0028fefc: cccccccc 00000000 758c4327 005b573d 00000000 00000000 0000001c 00000006
0028ff1c: 000213b8 7797fde5 779e8514 0028ff58 00000044 01c687b8 01c6caa8 01c70cb8
0028ff3c: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000001
0028ff5c: 00000001 00000000 ffffffff ffffffff ffffffff 00000000 00000000 0028ff94
0028ff7c: 7efde000 00000000 00000000 0028ff94 758c338a 7efde000 0028ffd4 77999a02
0028ff9c: 7efde000 d09d9d8b 00000000 00000000 7efde000 c0000005 758e770f 758e770f
0028ffbc: 0028ffa0 0028f088 ffffffff 779d6325 a72da4ef 00000000 0028ffec 779999d5
0028ffdc: 01890670 7efde000 00000000 00000000 00000000 00000000 01890670 7efde000
0028fffc: 00000000
Exception encountered during stack dump.

	Module list: names, addresses, sizes, time stamps and file times:
F:\SRB2\srb2win-release.exe, loaded at 0x00400000 - 1869288 bytes - 00000001 - file date is 5/18/2016 23:05:48
F:\SRB2\libFLAC-8.dll, loaded at 0x10000000 - 367104 bytes - 52067b0b - file date is 8/10/2013 13:40:28
F:\SRB2\exchndl.dll, loaded at 0x603c0000 - 392704 bytes - 41486e57 - file date is 3/15/2014 13:06:10
F:\SRB2\libintl-8.dll, loaded at 0x61cc0000 - 347910 bytes - 4d4a9e38 - file date is 3/15/2014 13:06:18
C:\Windows\System32\PROPSYS.dll, loaded at 0x64380000 - 988160 bytes - 4ce7b983 - file date is 11/20/2010 23:24:10
F:\SRB2\smpeg2.dll, loaded at 0x66240000 - 301568 bytes - 52067b0b - file date is 8/10/2013 13:40:28
F:\SRB2\SDL2_mixer.dll, loaded at 0x67880000 - 184320 bytes - 52067b0b - file date is 8/10/2013 13:40:28
C:\Windows\system32\WINNSI.DLL, loaded at 0x69ad0000 - 16896 bytes - 4a5bdb43 - file date is 7/13/2009 21:16:20
C:\Windows\system32\IPHLPAPI.DLL, loaded at 0x69ae0000 - 103936 bytes - 4ce7b859 - file date is 11/20/2010 23:24:34
F:\SRB2\libvorbisfile-3.dll, loaded at 0x6b3c0000 - 62976 bytes - 52067b0b - file date is 8/10/2013 13:40:28
F:\SRB2\SDL2.dll, loaded at 0x6c740000 - 1007104 bytes - 53250d74 - file date is 11/11/2014 15:44:12
F:\SRB2\libmodplug-1.dll, loaded at 0x6cb80000 - 401920 bytes - 52067b0b - file date is 8/10/2013 13:40:28
F:\SRB2\libvorbis-0.dll, loaded at 0x6d540000 - 196096 bytes - 52067b0b - file date is 8/10/2013 13:40:28
F:\SRB2\libgme.dll, loaded at 0x6e200000 - 488210 bytes - 516a380e - file date is 3/15/2014 13:05:58
F:\SRB2\libogg-0.dll, loaded at 0x70680000 - 47104 bytes - 52067b0b - file date is 8/10/2013 13:40:28
C:\Windows\SysWow64\XAudio2_7.dll, loaded at 0x73420000 - 527192 bytes - 4c0641e5 - file date is 6/2/2010 05:55:30
C:\Windows\system32\D3D9.DLL, loaded at 0x734b0000 - 1828352 bytes - 4ce7b7b3 - file date is 11/20/2010 23:24:24
C:\Windows\system32\wdmaud.drv, loaded at 0x73780000 - 172032 bytes - 4ce7ba26 - file date is 11/20/2010 23:24:02
C:\Windows\system32\AUDIOSES.DLL, loaded at 0x737b0000 - 195584 bytes - 54d03ba0 - file date is 2/2/2015 23:12:14
C:\Windows\system32\MSACM32.dll, loaded at 0x73ae0000 - 72192 bytes - 4a5bda4e - file date is 7/13/2009 21:15:44
C:\Windows\system32\midimap.dll, loaded at 0x73d50000 - 16896 bytes - 4a5bda84 - file date is 7/13/2009 21:15:42
C:\Windows\system32\VERSION.dll, loaded at 0x73d60000 - 21504 bytes - 4a5bdb2b - file date is 7/13/2009 21:16:18
C:\Windows\system32\msacm32.drv, loaded at 0x73f30000 - 20992 bytes - 4a5bda4f - file date is 7/13/2009 21:14:10
C:\Windows\system32\ksuser.dll, loaded at 0x73f40000 - 4608 bytes - 56675155 - file date is 12/8/2015 17:53:48
C:\Windows\system32\avrt.dll, loaded at 0x73f70000 - 14336 bytes - 4a5bd998 - file date is 7/13/2009 21:15:00
C:\Windows\System32\MMDevApi.dll, loaded at 0x73f80000 - 213504 bytes - 4ce7b892 - file date is 11/20/2010 23:23:52
C:\Windows\system32\prl_umdd.dll, loaded at 0x73fc0000 - 122600 bytes - 54487769 - file date is 10/23/2014 01:52:30
C:\Windows\system32\uxtheme.dll, loaded at 0x73ff0000 - 245760 bytes - 4a5bdb3c - file date is 7/13/2009 21:11:26
C:\Windows\system32\d3d8thk.dll, loaded at 0x74dc0000 - 11264 bytes - 4a5bd9a8 - file date is 7/13/2009 21:15:10
C:\Windows\system32\WINMM.DLL, loaded at 0x74dd0000 - 194048 bytes - 4ce7ba42 - file date is 11/20/2010 23:24:18
C:\Windows\system32\dwmapi.dll, loaded at 0x75210000 - 67584 bytes - 559eb13d - file date is 7/9/2015 13:42:56
C:\Windows\syswow64\CRYPTBASE.dll, loaded at 0x752a0000 - 36352 bytes - 56a1b56b - file date is 1/22/2016 00:51:56
C:\Windows\syswow64\SspiCli.dll, loaded at 0x752b0000 - 96768 bytes - 56a1c6fa - file date is 1/22/2016 02:06:52
C:\Windows\syswow64\LPK.dll, loaded at 0x75320000 - 25600 bytes - 55e66336 - file date is 9/1/2015 22:47:20
C:\Windows\syswow64\RPCRT4.dll, loaded at 0x75610000 - 665088 bytes - 56a1c6fa - file date is 1/22/2016 02:06:52
C:\Windows\syswow64\CFGMGR32.dll, loaded at 0x75730000 - 145920 bytes - 4ddb8851 - file date is 5/24/2011 06:39:40
C:\Windows\syswow64\kernel32.dll, loaded at 0x758b0000 - 1114112 bytes - 56a1c79d - file date is 1/22/2016 02:06:52
C:\Windows\syswow64\SETUPAPI.dll, loaded at 0x759c0000 - 1667584 bytes - 4ce7b9d9 - file date is 11/20/2010 23:23:52
C:\Windows\syswow64\SHELL32.DLL, loaded at 0x75b60000 - 12877824 bytes - 56a1c6c7 - file date is 1/22/2016 02:06:00
C:\Windows\syswow64\ADVAPI32.dll, loaded at 0x76840000 - 642560 bytes - 56a1c533 - file date is 1/22/2016 01:59:08
C:\Windows\syswow64\NSI.dll, loaded at 0x76970000 - 8704 bytes - 4a5bdad9 - file date is 7/13/2009 21:16:12
C:\Windows\syswow64\DEVOBJ.dll, loaded at 0x76bc0000 - 64512 bytes - 4ddb887d - file date is 5/24/2011 06:40:06
C:\Windows\syswow64\SHLWAPI.dll, loaded at 0x76be0000 - 350208 bytes - 4ce7b9e2 - file date is 11/20/2010 23:23:50
C:\Windows\syswow64\USER32.dll, loaded at 0x76c40000 - 833024 bytes - 56423973 - file date is 11/10/2015 14:37:40
C:\Windows\syswow64\OLEAUT32.dll, loaded at 0x76d40000 - 571904 bytes - 54754919 - file date is 11/25/2014 23:32:06
C:\Windows\syswow64\msvcrt.dll, loaded at 0x76df0000 - 690688 bytes - 4eeaf722 - file date is 12/16/2011 03:53:00
C:\Windows\syswow64\USP10.dll, loaded at 0x77020000 - 627712 bytes - 563902f2 - file date is 11/3/2015 14:56:20
C:\Windows\syswow64\CLBCatQ.DLL, loaded at 0x770c0000 - 522240 bytes - 4a5bd9b1 - file date is 7/13/2009 21:15:04
C:\Windows\syswow64\ole32.dll, loaded at 0x77150000 - 1413632 bytes - 569a8dc2 - file date is 1/16/2016 14:36:38
C:\Windows\SysWOW64\sechost.dll, loaded at 0x772b0000 - 92160 bytes - 556362e4 - file date is 5/25/2015 14:01:40
C:\Windows\syswow64\KERNELBASE.dll, loaded at 0x772e0000 - 275456 bytes - 56a1c79e - file date is 1/22/2016 02:06:52
C:\Windows\syswow64\IMM32.DLL, loaded at 0x77330000 - 119808 bytes - 4ce7ba53 - file date is 11/20/2010 23:24:26
C:\Windows\syswow64\WS2_32.dll, loaded at 0x773c0000 - 206848 bytes - 4ce7ba68 - file date is 11/20/2010 23:23:56
C:\Windows\syswow64\MSCTF.dll, loaded at 0x77400000 - 828928 bytes - 54b9c914 - file date is 1/16/2015 22:30:44
C:\Windows\syswow64\GDI32.dll, loaded at 0x774d0000 - 312320 bytes - 56675135 - file date is 12/8/2015 17:52:54
C:\Windows\SysWOW64\ntdll.dll, loaded at 0x77960000 - 1314328 bytes - 56a1c6fa - file date is 1/22/2016 02:09:42
srb2win.rpt:
Code:
-------------------

Error occured on Monday, June 27, 2016 at 00:22:32.

F:\SRB2\srb2win-release.exe caused an Access Violation at location 00531521 in module F:\SRB2\srb2win-release.exe Reading from location 0000001f.

Registers:
eax=00000003 ebx=0035005b ecx=00000b00 edx=00000df8 esi=003500a8 edi=00000006
eip=00531521 esp=0028fd00 ebp=0028fd28 iopl=0         nv up ei pl nz na po nc
cs=0023  ss=002b  ds=002b  es=002b  fs=0053  gs=002b             efl=00010206

Call stack:
00531521  F:\SRB2\srb2win-release.exe:00531521
0052FE4E  F:\SRB2\srb2win-release.exe:0052FE4E
00402BBA  F:\SRB2\srb2win-release.exe:00402BBA
00403217  F:\SRB2\srb2win-release.exe:00403217
00401870  F:\SRB2\srb2win-release.exe:00401870
005B5CEF  F:\SRB2\srb2win-release.exe:005B5CEF
errorlog.txt:
Code:
Email Sonic Team Junior so we can fix the bugs
Make sure you tell us what you were doing to cause the crash, and if possible, record a demo!




SRB2 v2.1.15 -ERROR LOG-


srb2win-release caused an Access Violation in module srb2win-release.exe at 0023:00531521.
Exception handler called in main thread.
Error occurred at 6/27/2016 00:22:34.
F:\SRB2\srb2win-release.exe, run by krishaq.
2 processor(s), type 586 6.17665.
Program Memory from 0x00010000 to 0x7FFEFFFF
0 MBytes physical memory.
Read from location 0000001f caused an access violation.

Registers:
EAX=00000003 CS=0023 EIP=00531521 EFLGS=00010206
EBX=0035005b SS=002b ESP=0028fd00 EBP=0028fd28
ECX=00000b00 DS=002b ESI=003500a8 FS=0053
EDX=00000df8 ES=002b EDI=00000006 GS=002b
Command Line parameters: -file weirdfofs.wad -warp 1 -nomusic Bytes at CS : EIP:
8b ?? 50 ?? 1c ?? a1 ?? 40 ?? ac ?? 81 ?? 01 ?? 39 ?? c2 ?? 0f ?? 85 ?? f4 ?? 00 ?? 00 ?? 00 ?? 
Stack dump:
0028fd00: 00000350 00000332 073d54c0 00000001 0000bfaf 000000b4 4fbd5d96 00000003
0028fd20: 00729048 0035005b 0028fd68 0052fe4e 00000024 00000000 00001400 00000c80
0028fd40: 00000082 00000000 0028fd68 004ae681 00000000 00000000 00000000 00000000
0028fd60: 0035005b 003500a8 0028fdf8 00402bba 01797240 00000000 0028fd98 00439b0f
0028fd80: 01797244 01783d80 00000008 00000020 0028fd98 00440bcf 0028fdc8 0040dbdf
0028fda0: 00000001 01783d80 00000000 00000020 000003e8 00000001 0429e832 00000020
0028fdc0: 003500a8 00000014 0028fdf8 0040e6f9 00000001 00001982 00000000 00000000
0028fde0: 00000000 01b673d8 00000020 0035005b 003500a8 00000006 0028fe38 00403217
0028fe00: 00000001 00000000 00010000 00000000 01b8dc20 00000000 0028fe44 00000000
0028fe20: 000003e8 000003ea 00000001 000003e8 003500a8 00000006 0028fe68 00401870
0028fe40: 006cf0e6 758c4a25 01bf1a48 6c76bc88 6c82a67c 6c8161c0 758c4a25 00000000
0028fe60: 003613b8 00000009 0035005b 005b5cef 00000006 003500a8 01bf1a48 00000002
0028fe80: 003500a8 00000006 00350018 00000006 003613b8 00000009 0028feb8 005de8fd
0028fea0: 00400000 00000000 01bf2ccf 00000001 005b4b20 0028fed0 0028ff88 004013e2
0028fec0: 00362ac0 00000009 00000006 004013e2 00000006 003613b8 00361660 a72a5ff7
0028fee0: cccccccc cccccccc cccccccc cccccccc cccccccc cccccccc cccccccc cccccccc
0028ff00: 00000000 758c4327 005b573d 00000000 00000000 0000001c 00000006 003613b8
0028ff20: 7797fde5 779e8514 0028ff58 00000044 01c087b8 01c0caa8 01c10cb8 00000000
0028ff40: 00000000 00000000 00000000 00000000 00000000 00000000 00000001 00000001
0028ff60: 00000000 ffffffff ffffffff ffffffff 00000000 00000000 0028ff94 7efde000
0028ff80: 00000000 00000000 0028ff94 758c338a 7efde000 0028ffd4 77999a02 7efde000
0028ffa0: d09a69f3 00000000 00000000 7efde000 c0000005 758e770f 758e770f 0028ffa0
0028ffc0: 0028f74c ffffffff 779d6325 a72a5097 00000000 0028ffec 779999d5 01890670
0028ffe0: 7efde000 00000000 00000000 00000000 00000000 01890670 7efde000 00000000
Exception encountered during stack dump.

	Module list: names, addresses, sizes, time stamps and file times:
F:\SRB2\srb2win-release.exe, loaded at 0x00400000 - 1869288 bytes - 00000001 - file date is 5/18/2016 23:05:48
F:\SRB2\libFLAC-8.dll, loaded at 0x10000000 - 367104 bytes - 52067b0b - file date is 8/10/2013 13:40:28
F:\SRB2\exchndl.dll, loaded at 0x603c0000 - 392704 bytes - 41486e57 - file date is 3/15/2014 13:06:10
F:\SRB2\libintl-8.dll, loaded at 0x61cc0000 - 347910 bytes - 4d4a9e38 - file date is 3/15/2014 13:06:18
C:\Windows\System32\PROPSYS.dll, loaded at 0x64380000 - 988160 bytes - 4ce7b983 - file date is 11/20/2010 23:24:10
F:\SRB2\smpeg2.dll, loaded at 0x66240000 - 301568 bytes - 52067b0b - file date is 8/10/2013 13:40:28
F:\SRB2\SDL2_mixer.dll, loaded at 0x67880000 - 184320 bytes - 52067b0b - file date is 8/10/2013 13:40:28
C:\Windows\system32\WINNSI.DLL, loaded at 0x69ad0000 - 16896 bytes - 4a5bdb43 - file date is 7/13/2009 21:16:20
C:\Windows\system32\IPHLPAPI.DLL, loaded at 0x69ae0000 - 103936 bytes - 4ce7b859 - file date is 11/20/2010 23:24:34
F:\SRB2\libvorbisfile-3.dll, loaded at 0x6b3c0000 - 62976 bytes - 52067b0b - file date is 8/10/2013 13:40:28
F:\SRB2\SDL2.dll, loaded at 0x6c740000 - 1007104 bytes - 53250d74 - file date is 11/11/2014 15:44:12
F:\SRB2\libmodplug-1.dll, loaded at 0x6cb80000 - 401920 bytes - 52067b0b - file date is 8/10/2013 13:40:28
F:\SRB2\libvorbis-0.dll, loaded at 0x6d540000 - 196096 bytes - 52067b0b - file date is 8/10/2013 13:40:28
F:\SRB2\libgme.dll, loaded at 0x6e200000 - 488210 bytes - 516a380e - file date is 3/15/2014 13:05:58
F:\SRB2\libogg-0.dll, loaded at 0x70680000 - 47104 bytes - 52067b0b - file date is 8/10/2013 13:40:28
C:\Windows\system32\D3D9.DLL, loaded at 0x732e0000 - 1828352 bytes - 4ce7b7b3 - file date is 11/20/2010 23:24:24
C:\Windows\system32\wdmaud.drv, loaded at 0x736f0000 - 172032 bytes - 4ce7ba26 - file date is 11/20/2010 23:24:02
C:\Windows\system32\AUDIOSES.DLL, loaded at 0x73720000 - 195584 bytes - 54d03ba0 - file date is 2/2/2015 23:12:14
C:\Windows\SysWow64\XAudio2_7.dll, loaded at 0x73760000 - 527192 bytes - 4c0641e5 - file date is 6/2/2010 05:55:30
C:\Windows\system32\midimap.dll, loaded at 0x73af0000 - 16896 bytes - 4a5bda84 - file date is 7/13/2009 21:15:42
C:\Windows\system32\MSACM32.dll, loaded at 0x73d40000 - 72192 bytes - 4a5bda4e - file date is 7/13/2009 21:15:44
C:\Windows\system32\VERSION.dll, loaded at 0x73d60000 - 21504 bytes - 4a5bdb2b - file date is 7/13/2009 21:16:18
C:\Windows\system32\ksuser.dll, loaded at 0x73f30000 - 4608 bytes - 56675155 - file date is 12/8/2015 17:53:48
C:\Windows\system32\msacm32.drv, loaded at 0x73f40000 - 20992 bytes - 4a5bda4f - file date is 7/13/2009 21:14:10
C:\Windows\System32\MMDevApi.dll, loaded at 0x73f70000 - 213504 bytes - 4ce7b892 - file date is 11/20/2010 23:23:52
C:\Windows\system32\prl_umdd.dll, loaded at 0x73fb0000 - 122600 bytes - 54487769 - file date is 10/23/2014 01:52:30
C:\Windows\system32\d3d8thk.dll, loaded at 0x73fd0000 - 11264 bytes - 4a5bd9a8 - file date is 7/13/2009 21:15:10
C:\Windows\system32\uxtheme.dll, loaded at 0x73ff0000 - 245760 bytes - 4a5bdb3c - file date is 7/13/2009 21:11:26
C:\Windows\system32\avrt.dll, loaded at 0x74dc0000 - 14336 bytes - 4a5bd998 - file date is 7/13/2009 21:15:00
C:\Windows\system32\WINMM.DLL, loaded at 0x74dd0000 - 194048 bytes - 4ce7ba42 - file date is 11/20/2010 23:24:18
C:\Windows\system32\dwmapi.dll, loaded at 0x75210000 - 67584 bytes - 559eb13d - file date is 7/9/2015 13:42:56
C:\Windows\syswow64\CRYPTBASE.dll, loaded at 0x752a0000 - 36352 bytes - 56a1b56b - file date is 1/22/2016 00:51:56
C:\Windows\syswow64\SspiCli.dll, loaded at 0x752b0000 - 96768 bytes - 56a1c6fa - file date is 1/22/2016 02:06:52
C:\Windows\syswow64\LPK.dll, loaded at 0x75320000 - 25600 bytes - 55e66336 - file date is 9/1/2015 22:47:20
C:\Windows\syswow64\RPCRT4.dll, loaded at 0x75610000 - 665088 bytes - 56a1c6fa - file date is 1/22/2016 02:06:52
C:\Windows\syswow64\CFGMGR32.dll, loaded at 0x75730000 - 145920 bytes - 4ddb8851 - file date is 5/24/2011 06:39:40
C:\Windows\syswow64\kernel32.dll, loaded at 0x758b0000 - 1114112 bytes - 56a1c79d - file date is 1/22/2016 02:06:52
C:\Windows\syswow64\SETUPAPI.dll, loaded at 0x759c0000 - 1667584 bytes - 4ce7b9d9 - file date is 11/20/2010 23:23:52
C:\Windows\syswow64\SHELL32.DLL, loaded at 0x75b60000 - 12877824 bytes - 56a1c6c7 - file date is 1/22/2016 02:06:00
C:\Windows\syswow64\ADVAPI32.dll, loaded at 0x76840000 - 642560 bytes - 56a1c533 - file date is 1/22/2016 01:59:08
C:\Windows\syswow64\NSI.dll, loaded at 0x76970000 - 8704 bytes - 4a5bdad9 - file date is 7/13/2009 21:16:12
C:\Windows\syswow64\DEVOBJ.dll, loaded at 0x76bc0000 - 64512 bytes - 4ddb887d - file date is 5/24/2011 06:40:06
C:\Windows\syswow64\SHLWAPI.dll, loaded at 0x76be0000 - 350208 bytes - 4ce7b9e2 - file date is 11/20/2010 23:23:50
C:\Windows\syswow64\USER32.dll, loaded at 0x76c40000 - 833024 bytes - 56423973 - file date is 11/10/2015 14:37:40
C:\Windows\syswow64\OLEAUT32.dll, loaded at 0x76d40000 - 571904 bytes - 54754919 - file date is 11/25/2014 23:32:06
C:\Windows\syswow64\msvcrt.dll, loaded at 0x76df0000 - 690688 bytes - 4eeaf722 - file date is 12/16/2011 03:53:00
C:\Windows\syswow64\USP10.dll, loaded at 0x77020000 - 627712 bytes - 563902f2 - file date is 11/3/2015 14:56:20
C:\Windows\syswow64\CLBCatQ.DLL, loaded at 0x770c0000 - 522240 bytes - 4a5bd9b1 - file date is 7/13/2009 21:15:04
C:\Windows\syswow64\ole32.dll, loaded at 0x77150000 - 1413632 bytes - 569a8dc2 - file date is 1/16/2016 14:36:38
C:\Windows\SysWOW64\sechost.dll, loaded at 0x772b0000 - 92160 bytes - 556362e4 - file date is 5/25/2015 14:01:40
C:\Windows\syswow64\KERNELBASE.dll, loaded at 0x772e0000 - 275456 bytes - 56a1c79e - file date is 1/22/2016 02:06:52
C:\Windows\syswow64\IMM32.DLL, loaded at 0x77330000 - 119808 bytes - 4ce7ba53 - file date is 11/20/2010 23:24:26
C:\Windows\syswow64\WS2_32.dll, loaded at 0x773c0000 - 206848 bytes - 4ce7ba68 - file date is 11/20/2010 23:23:56
C:\Windows\syswow64\MSCTF.dll, loaded at 0x77400000 - 828928 bytes - 54b9c914 - file date is 1/16/2015 22:30:44
C:\Windows\syswow64\GDI32.dll, loaded at 0x774d0000 - 312320 bytes - 56675135 - file date is 12/8/2015 17:52:54
C:\Windows\SysWOW64\ntdll.dll, loaded at 0x77960000 - 1314328 bytes - 56a1c6fa - file date is 1/22/2016 02:09:42

EDIT: Will also note that I got similar crashes even if the end of the FOF was adjusted to 1 fracunit tall rather than 0.

EIP=00531521 gives r_plane.c:685 in R_DrawPlanes
EIP=00575D6E has already been reported before several times in this thread, though the next EIP in both reports (0052CD06) gives r_draw8.c:1389 in R_DrawColumnShadowed_8
 
Last edited by a moderator:
So a friend of mine is dealing with some occasional crashes every now and then. He says that it crashes at will, often when there are too many things on screen or if the stage is big. He was using the software render. Here are the errorlog.txt and srb2win.rpt
And yes, he is using version 2.1.15, he was just too lazy to rename the folder.

Email Sonic Team Junior so we can fix the bugs
Make sure you tell us what you were doing to cause the crash, and if possible, record a demo!




SRB2 v2.1.15 -ERROR LOG-


srb2win caused an Access Violation in module srb2win.exe at 0023:00575d6e.
Exception handler called in main thread.
Error occurred at 8/4/2016 16:44:26.
E:\Users\User\Desktop\SRB2 2.1.14\srb2win.exe, run by User.
8 processor(s), type 586 21.258.
Program Memory from 0x00010000 to 0x7FFEFFFF
2048 MBytes physical memory.
Write to location 098b91a7 caused an access violation.

Registers:
EAX=000000d7 CS=0023 EIP=00575d6e EFLGS=00210202
EBX=07248200 SS=002b ESP=01aefcdc EBP=00000500
ECX=00006d02 DS=002b ESI=0b97be28 FS=0053
EDX=00000090 ES=002b EDI=098b91a7 GS=002b
Command Line parameters: Bytes at CS : EIP:
88 ?? 07 ?? 0f ?? b6 ?? 14 ?? 16 ?? 0f ?? b6 ?? 14 ?? 13 ?? 88 ?? 14 ?? 2f ?? 8d ?? 3c ?? 6f ??
Stack dump:
01aefcdc: 03c2004b 00000001 03c20008 01aefd18 00531611 0000038b 000002ff 0a934a08
01aefcfc: 00000001 000002ff 000000e2 00000287 0ae40038 0e22dca9 03c2004b 01aefd58
01aefd1c: 0052fe4e 00002975 00000000 01aefd58 004f4f33 00010000 00000000 01aefd58
01aefd3c: 004ae681 00000000 00000000 00000000 00000000 03c2004b 03c20008 01aefde8
01aefd5c: 00402bba 01797240 00000000 01aefd88 00439b0f 01797244 01783880 00000008
01aefd7c: 00000020 01aefd88 00440bcf 01aefdb8 0040dbdf 00000001 01783880 00000000
01aefd9c: 00000020 00009b3a 00000001 b4f35465 00000020 03c20008 0000000f 01aefde8
01aefdbc: 0040e6f9 00000001 00000313 00000000 00000000 00000000 0a7c9fe8 00000020
01aefddc: 03c2004b 03c20008 00000001 01aefe28 00403217 00000001 00000000 00010000
01aefdfc: 00000000 03f688f0 00000000 01aefe34 00000000 00009b3a 00009b3c 00000001
01aefe1c: 00009b3a 03c20008 00000001 01aefe58 00401870 006cf0e6 006cf0b4 01d30ad6
01aefe3c: 6c76bc88 6c82a67c 6c8161c0 76e8b0b0 00000000 036a2ce0 00000031 03c2004b
01aefe5c: 005b5cef 00000001 03c20008 01d30ad6 00000002 03c20008 00000001 03c20018
01aefe7c: 00000001 036a2ce0 00000031 01aefea8 005de8fd 00400000 00000000 01d3207b
01aefe9c: 00000001 005b4b20 01aefec0 01aeff80 004013e2 036a2cf0 00000031 00000001
01aefebc: 004013e2 00000001 036a2ce0 036a1710 01aefef4 76f8b4a9 01aeffcc 0188f2d5
01aefedc: 84feddc2 cccccccc cccccccc cccccccc cccccccc cccccccc cccccccc cccccccc
01aefefc: cccccccc 005b573d 00000000 00000000 00000008 00000001 036a2ce0 00000a34
01aeff1c: 391605b2 00000a34 00000044 01d33188 01d4ee98 01d4dc78 00000000 00000000
01aeff3c: 00000000 00000000 00000000 00000000 00000000 00000401 00000001 00000000
01aeff5c: 00000000 00010001 00000000 01890670 01890670 01aeff94 00295000 01890670
01aeff7c: 01890670 01aeff94 76e838f4 00295000 76e838d0 8509299c 01aeffdc 76fb5de3
01aeff9c: 00295000 84fedcae 00000000 00000000 00295000 c0000005 76cbf320 00000000
01aeffbc: 01aef6ec 84fedcae 01aeffa0 01aef6ec 01aeffe4 76fced50 f254176a 00000000
01aeffdc: 01aeffec 76fb5dae ffffffff 76fdb7b1 00000000 00000000 01890670 00295000
01aefffc: 00000000
Exception encountered during stack dump.

Module list: names, addresses, sizes, time stamps and file times:
E:\Users\User\Desktop\SRB2 2.1.14\srb2win.exe, loaded at 0x00400000 - 1869288 bytes - 00000001 - file date is 5/19/2016 08:05:48
E:\Users\User\Desktop\SRB2 2.1.14\libFLAC-8.dll, loaded at 0x056a0000 - 367104 bytes - 52067b0b - file date is 8/10/2013 19:40:28
C:\WINDOWS\System32\PROPSYS.dll, loaded at 0x076d0000 - 1355336 bytes - 5775dfa4 - file date is 7/13/2016 16:37:20
C:\Program Files (x86)\NVIDIA Corporation\3D Vision\nvSCPAPI.dll, loaded at 0x10000000 - 1028648 bytes - 50f95366 - file date is 1/18/2013 08:16:52
C:\WINDOWS\SYSTEM32\DSOUND.DLL, loaded at 0x5c510000 - 527360 bytes - 5632d5f6 - file date is 10/30/2015 09:18:30
E:\Users\User\Desktop\SRB2 2.1.14\exchndl.dll, loaded at 0x603c0000 - 392704 bytes - 41486e57 - file date is 3/15/2014 19:06:10
E:\Users\User\Desktop\SRB2 2.1.14\libintl-8.dll, loaded at 0x61cc0000 - 347910 bytes - 4d4a9e38 - file date is 3/15/2014 19:06:18
C:\WINDOWS\SYSTEM32\wdmaud.drv, loaded at 0x65100000 - 205824 bytes - 5632d662 - file date is 10/30/2015 09:18:30
E:\Users\User\Desktop\SRB2 2.1.14\smpeg2.dll, loaded at 0x66240000 - 301568 bytes - 52067b0b - file date is 8/10/2013 19:40:28
C:\WINDOWS\SYSTEM32\ksuser.dll, loaded at 0x66c70000 - 19648 bytes - 5632d8ba - file date is 10/30/2015 09:18:30
C:\WINDOWS\SYSTEM32\AUDIOSES.DLL, loaded at 0x676f0000 - 405568 bytes - 5699d41f - file date is 2/13/2016 19:02:32
E:\Users\User\Desktop\SRB2 2.1.14\SDL2_mixer.dll, loaded at 0x67880000 - 184320 bytes - 52067b0b - file date is 8/10/2013 19:40:28
C:\WINDOWS\SYSTEM32\nvd3dum.dll, loaded at 0x690b0000 - 12982400 bytes - 55c3e7fe - file date is 8/29/2015 00:31:10
E:\Users\User\Desktop\SRB2 2.1.14\libvorbisfile-3.dll, loaded at 0x6b3c0000 - 62976 bytes - 52067b0b - file date is 8/10/2013 19:40:28
E:\Users\User\Desktop\SRB2 2.1.14\SDL2.dll, loaded at 0x6c740000 - 1007104 bytes - 53250d74 - file date is 11/11/2014 21:44:12
C:\WINDOWS\SYSTEM32\WINMMBASE.dll, loaded at 0x6c960000 - 132744 bytes - 5632d6d0 - file date is 10/30/2015 09:18:30
E:\Users\User\Desktop\SRB2 2.1.14\libmodplug-1.dll, loaded at 0x6cb80000 - 401920 bytes - 52067b0b - file date is 8/10/2013 19:40:28
C:\WINDOWS\SYSTEM32\midimap.dll, loaded at 0x6d130000 - 18944 bytes - 5632d779 - file date is 10/30/2015 09:18:30
C:\WINDOWS\SYSTEM32\msacm32.drv, loaded at 0x6d140000 - 24064 bytes - 5632d7f7 - file date is 10/30/2015 09:18:30
C:\WINDOWS\SYSTEM32\WINMM.DLL, loaded at 0x6d150000 - 134352 bytes - 5632d6f0 - file date is 10/30/2015 09:18:30
E:\Users\User\Desktop\SRB2 2.1.14\libvorbis-0.dll, loaded at 0x6d540000 - 196096 bytes - 52067b0b - file date is 8/10/2013 19:40:28
E:\Users\User\Desktop\SRB2 2.1.14\libgme.dll, loaded at 0x6e200000 - 488210 bytes - 516a380e - file date is 3/15/2014 19:05:58
C:\WINDOWS\SYSTEM32\AVRT.dll, loaded at 0x6e420000 - 28416 bytes - 5632d6d2 - file date is 10/30/2015 09:18:30
C:\WINDOWS\SYSTEM32\D3D9.DLL, loaded at 0x6e4d0000 - 1866104 bytes - 5775e023 - file date is 7/13/2016 16:37:20
C:\WINDOWS\SYSTEM32\MSACM32.dll, loaded at 0x6f1a0000 - 90912 bytes - 5632d73f - file date is 10/30/2015 09:18:30
E:\Users\User\Desktop\SRB2 2.1.14\libogg-0.dll, loaded at 0x70680000 - 47104 bytes - 52067b0b - file date is 8/10/2013 19:40:28
C:\WINDOWS\System32\MMDevApi.dll, loaded at 0x70750000 - 339344 bytes - 5632d59f - file date is 10/30/2015 09:18:30
C:\WINDOWS\system32\dwmapi.dll, loaded at 0x70b40000 - 94208 bytes - 5632d633 - file date is 10/30/2015 09:18:30
C:\WINDOWS\SYSTEM32\wintypes.dll, loaded at 0x725c0000 - 820704 bytes - 56a84e76 - file date is 2/13/2016 19:02:22
C:\WINDOWS\SYSTEM32\IPHLPAPI.DLL, loaded at 0x72ed0000 - 187488 bytes - 5632d23e - file date is 10/30/2015 09:18:32
C:\WINDOWS\system32\uxtheme.dll, loaded at 0x72fc0000 - 458752 bytes - 5632da01 - file date is 10/30/2015 09:18:38
C:\WINDOWS\System32\DEVOBJ.dll, loaded at 0x73aa0000 - 129160 bytes - 5632d7bd - file date is 10/30/2015 09:18:24
C:\WINDOWS\SYSTEM32\ntmarta.dll, loaded at 0x73b60000 - 150840 bytes - 5632d6b0 - file date is 10/30/2015 09:18:28
C:\WINDOWS\system32\fltlib.dll, loaded at 0x73b90000 - 17408 bytes - 5632d7ac - file date is 10/30/2015 09:18:34
C:\WINDOWS\system32\version.dll, loaded at 0x73ba0000 - 27360 bytes - 5632d842 - file date is 10/30/2015 09:18:38
C:\Windows\SYSTEM32\guard32.dll, loaded at 0x73bb0000 - 642976 bytes - 577fb910 - file date is 7/10/2016 08:30:10
C:\WINDOWS\SYSTEM32\CRYPTBASE.dll, loaded at 0x73c50000 - 31528 bytes - 5632d853 - file date is 10/30/2015 09:18:32
C:\WINDOWS\SYSTEM32\SspiCli.dll, loaded at 0x73c60000 - 116216 bytes - 5632d9e2 - file date is 10/30/2015 09:18:32
C:\WINDOWS\SYSTEM32\GDI32.dll, loaded at 0x73c90000 - 1372312 bytes - 57491f19 - file date is 5/28/2016 06:57:06
C:\WINDOWS\SYSTEM32\msvcrt.dll, loaded at 0x73fc0000 - 773168 bytes - 5632d722 - file date is 10/30/2015 09:18:32
C:\WINDOWS\SYSTEM32\SETUPAPI.dll, loaded at 0x74080000 - 4268880 bytes - 574919ee - file date is 5/28/2016 07:25:44
C:\WINDOWS\SYSTEM32\bcryptPrimitives.dll, loaded at 0x74490000 - 360480 bytes - 57491c0a - file date is 5/28/2016 07:04:38
C:\WINDOWS\SYSTEM32\clbcatq.dll, loaded at 0x744f0000 - 526304 bytes - 5632d595 - file date is 10/30/2015 09:18:26
C:\WINDOWS\SYSTEM32\kernel.appcore.dll, loaded at 0x74580000 - 39792 bytes - 5632d814 - file date is 10/30/2015 09:18:24
C:\WINDOWS\SYSTEM32\PSAPI.DLL, loaded at 0x74700000 - 17048 bytes - 5632d8a1 - file date is 10/30/2015 09:18:24
C:\WINDOWS\SYSTEM32\powrprof.dll, loaded at 0x74710000 - 270672 bytes - 5632d723 - file date is 10/30/2015 09:18:26
C:\WINDOWS\SYSTEM32\RPCRT4.dll, loaded at 0x74780000 - 707608 bytes - 571afb7c - file date is 5/22/2016 22:52:28
C:\WINDOWS\SYSTEM32\IMM32.DLL, loaded at 0x74830000 - 169928 bytes - 5632d9eb - file date is 10/30/2015 09:18:30
C:\WINDOWS\SYSTEM32\WS2_32.dll, loaded at 0x74940000 - 388384 bytes - 57491b73 - file date is 5/28/2016 07:23:30
C:\WINDOWS\SYSTEM32\cfgmgr32.dll, loaded at 0x749a0000 - 217976 bytes - 5632d69e - file date is 10/30/2015 09:18:24
C:\WINDOWS\SYSTEM32\MSCTF.dll, loaded at 0x749e0000 - 1174008 bytes - 5699d2de - file date is 2/13/2016 19:02:22
C:\WINDOWS\SYSTEM32\ADVAPI32.dll, loaded at 0x74ba0000 - 499432 bytes - 568b1e14 - file date is 2/13/2016 19:02:22
C:\WINDOWS\SYSTEM32\windows.storage.dll, loaded at 0x74c20000 - 5240960 bytes - 5775e1aa - file date is 7/13/2016 16:38:04
C:\WINDOWS\SYSTEM32\sechost.dll, loaded at 0x75120000 - 269616 bytes - 5632d62f - file date is 10/30/2015 09:18:32
C:\WINDOWS\SYSTEM32\ole32.dll, loaded at 0x75170000 - 957608 bytes - 5775e160 - file date is 7/13/2016 16:36:38
C:\WINDOWS\SYSTEM32\SHLWAPI.dll, loaded at 0x75260000 - 276336 bytes - 5632d541 - file date is 10/30/2015 09:18:38
C:\WINDOWS\SYSTEM32\shcore.dll, loaded at 0x752b0000 - 569752 bytes - 5775e04b - file date is 7/13/2016 16:36:54
C:\WINDOWS\SYSTEM32\combase.dll, loaded at 0x75350000 - 1824264 bytes - 56a84cbb - file date is 2/13/2016 19:02:22
C:\WINDOWS\SYSTEM32\USER32.dll, loaded at 0x75510000 - 1337240 bytes - 571afb7c - file date is 5/22/2016 22:52:26
C:\WINDOWS\SYSTEM32\SHELL32.DLL, loaded at 0x756c0000 - 21123320 bytes - 5775e1ec - file date is 7/13/2016 16:37:04
C:\WINDOWS\SYSTEM32\OLEAUT32.dll, loaded at 0x76ae0000 - 589856 bytes - 5632d5ee - file date is 10/30/2015 09:18:32
C:\WINDOWS\SYSTEM32\KERNELBASE.dll, loaded at 0x76b80000 - 1557776 bytes - 5775e78b - file date is 7/13/2016 16:36:54
C:\WINDOWS\SYSTEM32\profapi.dll, loaded at 0x76e60000 - 54752 bytes - 5632d7db - file date is 10/30/2015 09:18:32
C:\WINDOWS\SYSTEM32\KERNEL32.DLL, loaded at 0x76e70000 - 620176 bytes - 5632d9fd - file date is 10/30/2015 09:18:24
C:\WINDOWS\SYSTEM32\ntdll.dll, loaded at 0x76f50000 - 1542816 bytes - 571afb7f - file date is 5/22/2016 22:52:32
-------------------

Error occured on Thursday, August 4, 2016 at 16:44:24.

E:\Users\User\Desktop\SRB2 2.1.14\srb2win.exe caused an Access Violation at location 00575d6e in module E:\Users\User\Desktop\SRB2 2.1.14\srb2win.exe Writing to location 098b91a7.

Registers:
eax=000000d7 ebx=07248200 ecx=00006d02 edx=00000090 esi=0b97be28 edi=098b91a7
eip=00575d6e esp=01aefcdc ebp=00000500 iopl=0 nv up ei pl nz na pe nc
cs=0023 ss=002b ds=002b es=002b fs=0053 gs=002b efl=00210202

Call stack:
00575D6E E:\Users\User\Desktop\SRB2 2.1.14\srb2win.exe:00575D6E
00531611 E:\Users\User\Desktop\SRB2 2.1.14\srb2win.exe:00531611
0052FE4E E:\Users\User\Desktop\SRB2 2.1.14\srb2win.exe:0052FE4E
00402BBA E:\Users\User\Desktop\SRB2 2.1.14\srb2win.exe:00402BBA
00403217 E:\Users\User\Desktop\SRB2 2.1.14\srb2win.exe:00403217
00401870 E:\Users\User\Desktop\SRB2 2.1.14\srb2win.exe:00401870
005B5CEF E:\Users\User\Desktop\SRB2 2.1.14\srb2win.exe:005B5CEF
005DE8FD E:\Users\User\Desktop\SRB2 2.1.14\srb2win.exe:005DE8FD
004013E2 E:\Users\User\Desktop\SRB2 2.1.14\srb2win.exe:004013E2
76E838F4 C:\WINDOWS\SYSTEM32\KERNEL32.DLL:76E838F4 BaseThreadInitThunk
76FB5DE3 C:\WINDOWS\SYSTEM32\ntdll.dll:76FB5DE3 RtlUnicodeStringToInteger
76FB5DAE C:\WINDOWS\SYSTEM32\ntdll.dll:76FB5DAE RtlUnicodeStringToInteger
 
my SRB2 Crashes everytime it loads, no matter what, it crashes at loading config.cfg,
i can't put the error log because it didn't give me the crash report, but i can tell what i was doing, i was actually trying HMS123311 at Pipe Towers Zone, when i fell on a bottomless pit, some parts of the skybox were destroyed, i noticed when i exited SRB2, i opened it again to load the game without HMS, but it crashed.



EDIT: i found the problem, it was SRB2Win.exe, because i played in OpenGL and it worked perfectly.
 
Last edited:
So i'm not sure if this is just my PC but the exe Crashes/dies if i perform the scenario written below

To replicate the Scenario
Load software srb2win(Wolfy's) in windowed mode
Set resolution to lowest
Toggle fullscreen so that it says 'on'
Load a map

Code:
srb2win caused an Access Violation in module Unknown at 001b:00000000.
Exception handler called in main thread.
Error occurred at 8/20/2016 19:52:24.
C:\Documents and Settings\Administrator\My Documents\Documents\Mujamel\StUfF\old Homework\z\Srb2.1\srb2win.exe, run by Administrator.
2 processor(s), type 586 15.1025.
Program Memory from 0x00010000 to 0x7FFEFFFF
1016 MBytes physical memory.
Read from location 00000000 caused an access violation.

Registers:
EAX=00000068 CS=001b EIP=00000000 EFLGS=00010202
EBX=00000001 SS=0023 ESP=0022f2cc EBP=0419c498
ECX=00000067 DS=0023 ESI=00000000 FS=003b
EDX=0419c4bc ES=0023 EDI=00000024 GS=0000
Command Line parameters: -win -nomusic -server -nodownloading -warp 544 -gametype 3 -file Pal-ColorPlus.wad Bytes at CS : EIP:
 

Who is viewing this thread (Total: 1, Members: 0, Guests: 1)

Back
Top