Home
last modified time | relevance | path

Searched refs:SDWERROR (Results 1 – 2 of 2) sorted by relevance

/dports/games/aklabeth/aklabeth-1.0/src/
H A Dsdw.cpp50 SDL_INIT_JOYSTICK) == -1) SDWERROR(); in main()
57 if (Display == NULL) SDWERROR(); // Main display screen failure in main()
65 if (JoyPtr == NULL) SDWERROR(); // Why not ? in main()
131 if (sSurface == NULL) SDWERROR(); // We don't handle it nicely. in Surface()
147 if (sSurface == NULL) SDWERROR(); // We don't handle it nicely. in Surface()
758 if (s == NULL) SDWERROR(); // Don't pass me NULL ! in String()
783 if (SDL_LockSurface(Surface) < 0) SDWERROR(); in _GetPixel()
1099 SDWERROR(); in Load()
1106 if (Cvt.buf == NULL) SDWERROR(); in Load()
1205 SDWERROR(); // ... or not. in SoundInitialise()
H A Dsdw.hxx31 #define SDWASSERT(x) if (!(x)) SDWERROR() // ASSERT and ERROR macros
32 #define SDWERROR() FatalError(__LINE__,__FILE__) macro