diff options
author | pixel <pixel> | 2003-03-26 10:44:20 +0000 |
---|---|---|
committer | pixel <pixel> | 2003-03-26 10:44:20 +0000 |
commit | a749e5e0f870dc2acde2de55cba2cd074d524442 (patch) | |
tree | 5507643f186bd7a454e2d6c3dfa446a16e11f0e7 | |
parent | c1057d096fa2e1421d881732922a929829799263 (diff) |
Fixed Big endian support
-rw-r--r-- | lib/glfont.cc | 6 | ||||
-rw-r--r-- | lib/gltexture.cc | 7 | ||||
-rw-r--r-- | src/font.bin | bin | 66823 -> 66823 bytes |
3 files changed, 11 insertions, 2 deletions
diff --git a/lib/glfont.cc b/lib/glfont.cc index 9b77c8c..80a8b1d 100644 --- a/lib/glfont.cc +++ b/lib/glfont.cc @@ -111,7 +111,7 @@ mogltk::font::font(Handle * ffont) : textcolor(255, 255, 255, 255), shadow(0), w Uint8 * curtex = (Uint8 *) fonttex[0]->GetSurface()->pixels; Uint32 curU = 0, curV = 0, curT = 0; - for (int i = 0; i < nbentries; i++) { + for (i = 0; i < nbentries; i++) { sizes[i] = ffont->readU8(); for (int v = 0; v < maxY; v++) { for (int u = 0; u < maxX; u++) { @@ -147,7 +147,9 @@ mogltk::font::font(Handle * ffont) : textcolor(255, 255, 255, 255), shadow(0), w corresp = (Uint16 *) malloc(nbentries * 2 * sizeof(Uint16)); - ffont->read(corresp, 2 * sizeof(Uint16) * nbentries); + for (i = 0; i < 2 * nbentries; i++) { + corresp[i] = ffont->readU16(); + } } mogltk::font::~font() { diff --git a/lib/gltexture.cc b/lib/gltexture.cc index b0bc7c4..c0a940f 100644 --- a/lib/gltexture.cc +++ b/lib/gltexture.cc @@ -279,10 +279,17 @@ SDL_Surface * mogltk::texture::LoadNTEX(Handle * h) throw (GeneralException) { width = h->readU16(); if (!(r = SDL_CreateRGBSurface(SDL_SWSURFACE, width, height, 32, +#if SDL_BYTEORDER == SDL_BIG_ENDIAN + 0xff000000, + 0x00ff0000, + 0x0000ff00, + 0x000000ff +#else 0x000000ff, 0x0000ff00, 0x00ff0000, 0xff000000 +#endif ))) { throw GeneralException(_("Can't create RGB Surface for LoadNTEX")); } diff --git a/src/font.bin b/src/font.bin Binary files differindex c0dfd31..10e1b48 100644 --- a/src/font.bin +++ b/src/font.bin |