diff options
| author | ayuanx <ayuanx@gmail.com> | 2010-01-28 13:38:09 +0000 |
|---|---|---|
| committer | ayuanx <ayuanx@gmail.com> | 2010-01-28 13:38:09 +0000 |
| commit | 4d0b87fdde261ce4bfe16f6443973dbcd40a7878 (patch) | |
| tree | c2821c7b6d0d3c769728f2abf0cde69bdd226ba5 /Source/Plugins | |
| parent | b12ed5d1711455a0f9530b56bcdd11e02ba78967 (diff) | |
Revert r4978.
Until anti-alias is implemented, turning it on will only slow things down.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4979 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Plugins')
| -rw-r--r-- | Source/Plugins/Plugin_VideoDX9/Src/Render.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/Plugins/Plugin_VideoDX9/Src/Render.cpp b/Source/Plugins/Plugin_VideoDX9/Src/Render.cpp index 1563919853..9c97bd1b2e 100644 --- a/Source/Plugins/Plugin_VideoDX9/Src/Render.cpp +++ b/Source/Plugins/Plugin_VideoDX9/Src/Render.cpp @@ -263,8 +263,9 @@ bool Renderer::Init() { UpdateActiveConfig(); int fullScreenRes, w_temp, h_temp; - s_blendMode = 0; - int backbuffer_ms_mode = g_ActiveConfig.iMultisampleMode; + s_blendMode = 0; + // Anti-aliasing hasn't been implemented yet + int backbuffer_ms_mode = 0; // g_ActiveConfig.iMultisampleMode; sscanf(g_Config.cFSResolution, "%dx%d", &w_temp, &h_temp); |
