"README.md" did not exist on "cleanup-opengl"
Commits on Source (22)
-
wolfs authored
Note: I/O library is fully functioning in this state, but lacks security restrictions. We'll get to those later ;)
-
wolfs authored
...and remove io.popen(), cause that shit is DANGEROUS.
-
wolfs authored
This is probably super inefficient. Someone please teach me how2C.
-
wolfs authored
Thanks Inu!
-
wolfs authored
-
wolfs authored
Also block % in filename strings
-
wolfs authored
I got lazy and used a weird inefficient method, but I don't know how to clean this mess up :c At least it works.
-
wolfs authored
If the total file size is above 1MB after writing, discard all changes.
-
Objectplace reallocates the mapthings list to add one more mapthing. By itself there's no problem with this. But, mobj->spawnpoint is a pointer to the mapthing's location in the mapthings list. So by reallocating the mapthings list, all references to mobj->spawnpoints point to freed memory. ... Oops. Now when objectplace reallocates the mapthings list it actually corrects the locations of all mobj's spawnpoints to point to the new list. Hooray, you can use NiGHTS objectplace again if you really want to.
-
The point here is ColorOpposite(MAXSKINCOLORS) would have given an actual result of its own since MAXSKINCOLORS & MAXSKINCOLORS is still MAXSKINCOLORS. This shouldn't happen though, as both Color_Opposite[MAXSKINCOLORS*2] and Color_Opposite[MAXSKINCOLOR*2+1] aren't defined.
-
-
-
-
Hopefully this all still works properly, try not to kill me if it doesn't =V
-
Monster Iestyn authored
Least I can do to make up for breaking io.open in the first place :E
-
wolfs authored
According to Alam, supporting this shouldn't cause any issues.
-
Alam Ed Arias authored
-
Alam Ed Arias authored
Showing
- CMakeLists.txt 2 additions, 1 deletionCMakeLists.txt
- SRB2.cbp 53 additions, 166 deletionsSRB2.cbp
- cmake/Modules/FindSDL2.cmake 0 additions, 1 deletioncmake/Modules/FindSDL2.cmake
- comptime.bat 26 additions, 4 deletionscomptime.bat
- comptime.sh 7 additions, 3 deletionscomptime.sh
- src/CMakeLists.txt 3 additions, 0 deletionssrc/CMakeLists.txt
- src/Makefile 1 addition, 0 deletionssrc/Makefile
- src/blua/Makefile.cfg 1 addition, 0 deletionssrc/blua/Makefile.cfg
- src/blua/linit.c 1 addition, 0 deletionssrc/blua/linit.c
- src/blua/liolib.c 589 additions, 0 deletionssrc/blua/liolib.c
- src/blua/luaconf.h 15 additions, 8 deletionssrc/blua/luaconf.h
- src/blua/lualib.h 3 additions, 0 deletionssrc/blua/lualib.h
- src/comptime.c 2 additions, 0 deletionssrc/comptime.c
- src/config.h.in 1 addition, 0 deletionssrc/config.h.in
- src/console.c 1 addition, 1 deletionsrc/console.c
- src/d_main.c 11 additions, 3 deletionssrc/d_main.c
- src/d_netcmd.c 25 additions, 1 deletionsrc/d_netcmd.c
- src/dehacked.c 72 additions, 41 deletionssrc/dehacked.c
- src/doomdef.h 10 additions, 3 deletionssrc/doomdef.h
- src/f_finale.c 1 addition, 0 deletionssrc/f_finale.c
src/blua/liolib.c
0 → 100644