X-Git-Url: http://deadsoftware.ru/gitweb?a=blobdiff_plain;f=src%2Fgame%2Fg_textures.pas;h=d35fc53be4c961ae19e62c0e973b206c1720d887;hb=dc37333a08186fc9d9ceffb8b7a0b49534fcf5ee;hp=aaa91b793fe590d5e3bec09c6f432b148141b148;hpb=c9fc9bdd334338e3f77750416c57fa55c5665fc0;p=d2df-sdl.git 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;