Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes #1

Merged
merged 2 commits into from Jun 7, 2016
Merged

Fixes #1

Changes from all commits
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

4 vars.c
@@ -48,7 +48,9 @@ u8 meshtid[MESH_CNT];

u8 textureheader[256][4],texturereload[256];
u16 texturedata[1048576*5/2];
u32 texturepointer[128];
//senquack - should be [256], judging from its use in zrmloadtextures() in zresm.c:
//u32 texturepointer[128];
u32 texturepointer[256];

u16 meshcount;

4 vars.h
@@ -46,7 +46,9 @@ extern u8 meshtid[MESH_CNT];

extern u8 textureheader[256][4],texturereload[256];
extern u16 texturedata[1048576*5/2];
extern u32 texturepointer[128];
//senquack - should be [256], judging from its use in zrmloadtextures() in zresm.c:
//extern u32 texturepointer[128];
extern u32 texturepointer[256];

extern u16 meshcount;

@@ -275,7 +275,7 @@ void zcore_video_init(void)
#if defined(GCW)

////////////////////////////////////////////////////////////////////////////////////////
screen=SDL_SetVideoMode(320,240,16, SDL_OPENGL);
screen=SDL_SetVideoMode(320,240,16, SDL_SWSURFACE);

const char* output;

ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.