From 09a0b34ce1d3b4ef1c9e868cbcc443030ada0fb5 Mon Sep 17 00:00:00 2001 From: nakeee Date: Tue, 28 Oct 2008 07:08:20 +0000 Subject: [PATCH] _rotl already in common.h git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@987 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Plugins/Plugin_VideoOGL/Src/TextureMngr.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Source/Plugins/Plugin_VideoOGL/Src/TextureMngr.cpp b/Source/Plugins/Plugin_VideoOGL/Src/TextureMngr.cpp index 1aab3cf239..8f5d11e4a3 100644 --- a/Source/Plugins/Plugin_VideoOGL/Src/TextureMngr.cpp +++ b/Source/Plugins/Plugin_VideoOGL/Src/TextureMngr.cpp @@ -188,11 +188,6 @@ void TextureMngr::Cleanup() } } -#ifndef _WIN32 -inline u32 _rotl(u32 x, int shift) { - return (x << shift) | (x >> (32 - shift)); -} -#endif TextureMngr::TCacheEntry* TextureMngr::Load(int texstage, u32 address, int width, int height, int format, int tlutaddr, int tlutfmt) { if (address == 0)