summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2015-03-06 16:08:00 +0100
committer Miodrag Milanovic <mmicko@gmail.com>2015-03-06 16:08:00 +0100
commit8908bdc264a743774a417397da3daceba8ac7951 (patch)
tree936876f15212e02b15193160e585d9b4803bb360
parent7384794c1637c06192a1a272205210b2bdf3ed3e (diff)
Removed unused variable (nw)
-rw-r--r--src/osd/windows/winmain.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/osd/windows/winmain.c b/src/osd/windows/winmain.c
index 8a52feb921a..8b24108b1ca 100644
--- a/src/osd/windows/winmain.c
+++ b/src/osd/windows/winmain.c
@@ -192,7 +192,6 @@ private:
UINT8 m_stack_depth;
UINT8 m_entry_stride;
- UINT32 m_max_seconds;
dynamic_array<FPTR> m_buffer;
FPTR * m_buffer_ptr;
FPTR * m_buffer_end;
@@ -1359,7 +1358,6 @@ sampling_profiler::sampling_profiler(UINT32 max_seconds, UINT8 stack_depth = 0)
m_thread_exit(false),
m_stack_depth(stack_depth),
m_entry_stride(stack_depth + 2),
- m_max_seconds(max_seconds),
m_buffer(max_seconds * 1000 * m_entry_stride),
m_buffer_ptr(m_buffer),
m_buffer_end(m_buffer + max_seconds * 1000 * m_entry_stride)