gsdx: s/u32 pointer/uptr/

This commit is contained in:
Gregory Hainaut 2016-01-14 00:42:56 +01:00
parent 6ec7d2c340
commit 022cd9cd64
2 changed files with 3 additions and 3 deletions

View File

@ -36,7 +36,7 @@ extern uint64 g_real_texture_upload_byte;
namespace PboPool {
GLuint m_pool[PBO_POOL_SIZE];
uint32 m_offset[PBO_POOL_SIZE];
uptr m_offset[PBO_POOL_SIZE];
char* m_map[PBO_POOL_SIZE];
uint32 m_current_pbo = 0;
uint32 m_size;
@ -132,7 +132,7 @@ namespace PboPool {
}
}
uint32 Offset() {
uptr Offset() {
return m_offset[m_current_pbo];
}

View File

@ -31,7 +31,7 @@ namespace PboPool {
char* Map(uint32 size);
void Unmap();
uint32 Offset();
uptr Offset();
void EndTransfer();
void Init();