Skip to content

Commit 1cad4a9

Browse files
author
Pavel Kovalenko
committed
Fix typo in texture loader messages.
1 parent 29d37ea commit 1cad4a9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Layers/xrRender/Texture.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ ID3DBaseTexture* CRender::texture_load(LPCSTR fRName, u32& ret_msize)
330330
D3DXIMAGE_INFO IMG;
331331
S = FS.r_open (fn);
332332
#ifdef DEBUG
333-
Msg ("* Loaded: %s[%d]b",fn,S->length());
333+
Msg ("* Loaded: %s[%d]",fn,S->length());
334334
#endif // DEBUG
335335
img_size = S->length ();
336336
R_ASSERT (S);

src/Layers/xrRenderDX10/dx10Texture.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ ID3DBaseTexture* CRender::texture_load(LPCSTR fRName, u32& ret_msize, bool bStag
353353

354354
S = FS.r_open (fn);
355355
#ifdef DEBUG
356-
Msg ("* Loaded: %s[%d]b",fn,S->length());
356+
Msg ("* Loaded: %s[%d]",fn,S->length());
357357
#endif // DEBUG
358358
img_size = S->length ();
359359
R_ASSERT (S);

0 commit comments

Comments
 (0)