summaryrefslogtreecommitdiff
path: root/src/renderer
diff options
context:
space:
mode:
authorTim Angus <tim@ngus.net>2006-11-28 23:46:04 +0000
committerTim Angus <tim@ngus.net>2006-11-28 23:46:04 +0000
commit92905745a71578eed267f25311d7a18d49976f6d (patch)
tree5836f0a4424b938c6782190ec9c28c6be808f389 /src/renderer
parent6af24abf02f1d0dedc5dbe655a37d5afc9f0646a (diff)
* Merge ioq3-989
Diffstat (limited to 'src/renderer')
-rw-r--r--src/renderer/tr_model.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/renderer/tr_model.c b/src/renderer/tr_model.c
index b59ff3b4..8fdd0adb 100644
--- a/src/renderer/tr_model.c
+++ b/src/renderer/tr_model.c
@@ -653,9 +653,9 @@ static qboolean R_LoadMDR( model_t *mod, void *buffer, int filesize, const char
for(j = 0; j < surf->numTriangles; j++)
{
- tri->indexes[0] = curtri->indexes[0];
- tri->indexes[1] = curtri->indexes[1];
- tri->indexes[2] = curtri->indexes[2];
+ tri->indexes[0] = LittleLong(curtri->indexes[0]);
+ tri->indexes[1] = LittleLong(curtri->indexes[1]);
+ tri->indexes[2] = LittleLong(curtri->indexes[2]);
tri++;
curtri++;