Skip to content

Commit

Permalink
Temporary hack to forcefully enable graphics rendering with KVM.
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Spyridakis committed Apr 18, 2013
1 parent 0bc294a commit 64dd1b3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion hw/framebuffer.c
Expand Up @@ -89,7 +89,8 @@ void framebuffer_update_display(
for (; i < rows; i++) {
dirty = memory_region_get_dirty(mem, addr, src_width,
DIRTY_MEMORY_VGA);
if (dirty || invalidate) {
(void)dirty, (void)invalidate;
if (1) {
fn(opaque, dest, src, cols, dest_col_pitch);
if (first == -1)
first = i;
Expand Down

0 comments on commit 64dd1b3

Please sign in to comment.