diff options
author | Twinaphex | 2015-02-06 09:39:11 +0100 |
---|---|---|
committer | Twinaphex | 2015-02-06 09:39:11 +0100 |
commit | 40dabc0b86e98a2f9b754692bd98404d038f6bce (patch) | |
tree | 27a148679e25f6edb7a2dd85c54514139bb72450 /plugins/gpu_unai/gpu_raster_line.h | |
parent | cebb70f24ab54693b12aaa27b85a52689e26e1ff (diff) | |
parent | 2af7e74feec67c0a798ac190774cb4b3e925be76 (diff) | |
download | pcsx_rearmed-40dabc0b86e98a2f9b754692bd98404d038f6bce.tar.gz pcsx_rearmed-40dabc0b86e98a2f9b754692bd98404d038f6bce.tar.bz2 pcsx_rearmed-40dabc0b86e98a2f9b754692bd98404d038f6bce.zip |
Merge pull request #14 from notaz/for_libretro
r22 merge
Diffstat (limited to 'plugins/gpu_unai/gpu_raster_line.h')
-rw-r--r-- | plugins/gpu_unai/gpu_raster_line.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/gpu_unai/gpu_raster_line.h b/plugins/gpu_unai/gpu_raster_line.h index 4edfa06..fc59b79 100644 --- a/plugins/gpu_unai/gpu_raster_line.h +++ b/plugins/gpu_unai/gpu_raster_line.h @@ -26,7 +26,7 @@ #define GPU_DIGITS 16 #define GPU_DIGITSC (GPU_DIGITS+3) -INLINE long GPU_DIV(long rs, long rt) +INLINE s32 GPU_DIV(s32 rs, s32 rt) { return rt ? (rs / rt) : (0); } |