Skip to content

Commit 9096dde

Browse files
timangusmgerhardy
authored andcommitted
Move puff.* to renderercommon
1 parent de24912 commit 9096dde

File tree

7 files changed

+5
-6
lines changed

7 files changed

+5
-6
lines changed

code/client/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ set(SRCS
4343
../qcommon/q_shared.c
4444
../qcommon/unzip.c
4545
../qcommon/ioapi.c
46-
../qcommon/puff.c
4746
../qcommon/vm.c
4847
../qcommon/vm_interpreted.c
4948
../qcommon/vm_x86.c

code/renderer_vulkan/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,8 +116,8 @@ endforeach()
116116
if (USE_RENDERER_DLOPEN)
117117
list(APPEND SRCS
118118
../qcommon/q_shared.c
119-
../qcommon/puff.c
120119
../qcommon/q_math.c
120+
../renderercommon/puff.c
121121
)
122122
endif()
123123

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
#ifndef __PUFF_H
3131
#define __PUFF_H
3232

33-
#include "q_shared.h" /* for definitions of the <stdint.h> types */
33+
#include "../qcommon/q_shared.h" /* for definitions of the <stdint.h> types */
3434

3535
/*
3636
* See puff.c for purpose and usage.

code/renderercommon/tr_image_png.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
2222

2323
#include "tr_common.h"
2424

25-
#include "../qcommon/puff.h"
25+
#include "puff.h"
2626

2727
#ifdef USE_LOCAL_HEADERS
2828
#include "../zlib/zlib.h"

code/renderergl1/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ set(SRCS
3737
if (USE_RENDERER_DLOPEN)
3838
list(APPEND SRCS
3939
../qcommon/q_shared.c
40-
../qcommon/puff.c
4140
../qcommon/q_math.c
41+
../renderercommon/puff.c
4242
../renderercommon/tr_subs.c
4343
)
4444
endif()

code/renderergl2/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,8 @@ endforeach()
8888
if (USE_RENDERER_DLOPEN)
8989
list(APPEND SRCS
9090
../qcommon/q_shared.c
91-
../qcommon/puff.c
9291
../qcommon/q_math.c
92+
../renderercommon/puff.c
9393
../renderercommon/tr_subs.c
9494
)
9595
endif()

0 commit comments

Comments
 (0)