X-Git-Url: http://deadsoftware.ru/gitweb?p=d2df-sdl.git;a=blobdiff_plain;f=src%2Fgame%2Fg_textures.pas;h=d35fc53be4c961ae19e62c0e973b206c1720d887;hp=aaa91b793fe590d5e3bec09c6f432b148141b148;hb=dc37333a08186fc9d9ceffb8b7a0b49534fcf5ee;hpb=16333a342f6a12afee83673e55a123f6b700a804 diff --git a/src/game/g_textures.pas b/src/game/g_textures.pas index aaa91b7..d35fc53 100644 --- a/src/game/g_textures.pas +++ b/src/game/g_textures.pas @@ -24,11 +24,10 @@ uses type TLevelTexture = record - textureName: AnsiString; - width, height: Word; + TextureName: AnsiString; // as stored in wad + FullName: AnsiString; // full path to texture // !!! merge it with TextureName case anim: Boolean of - false: (textureID: LongWord); - true: (framesID: LongWord; framesCount: Byte; speed: Byte); + true: (framesCount: Byte; speed: Byte); end; TLevelTextureArray = array of TLevelTexture;