File tree Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change 66
77namespace Util {
88SDL_Surface *GetMissingImageTextureSDLSurface () {
9- SDL_RWops *rwop =
10- SDL_RWFromConstMem (MISSING_IMAGE_TEXTURE_BASE64_DECODE.data (),
11- MISSING_IMAGE_TEXTURE_BASE64_DECODE.size ());
9+ SDL_RWops *rwop = SDL_RWFromConstMem (MISSING_IMAGE_TEXTURE_BASE64_DECODE.data (),
10+ MISSING_IMAGE_TEXTURE_BASE64_DECODE.size ());
1211 SDL_Surface *aSurface = IMG_LoadTyped_RW (rwop, 1 , " PNG" );
1312
1413 if (aSurface == nullptr ) {
@@ -19,9 +18,8 @@ SDL_Surface *GetMissingImageTextureSDLSurface() {
1918}
2019
2120SDL_Surface *GetMissingFontTextureSDLSurface () {
22- SDL_RWops *rwop =
23- SDL_RWFromConstMem (MISSING_FONT_TEXTURE_BASE64_DECODE.data (),
24- MISSING_FONT_TEXTURE_BASE64_DECODE.size ());
21+ SDL_RWops *rwop = SDL_RWFromConstMem (MISSING_FONT_TEXTURE_BASE64_DECODE.data (),
22+ MISSING_FONT_TEXTURE_BASE64_DECODE.size ());
2523 SDL_Surface *aSurface = IMG_LoadTyped_RW (rwop, 1 , " JPG" );
2624
2725 if (aSurface == nullptr ) {
You can’t perform that action at this time.
0 commit comments