View Issue Details
| ID | Project | Category | View Status | Date Submitted | Last Update |
|---|---|---|---|---|---|
| 0002034 | FSSCP | HUD | public | 2009-11-10 17:09 | 2009-11-24 03:21 |
| Reporter | chief1983 | Assigned To | Zacam | ||
| Priority | high | Severity | minor | Reproducibility | always |
| Status | resolved | Resolution | fixed | ||
| Product Version | 3.6.11 | ||||
| Target Version | 3.6.12 RC1 | Fixed in Version | 3.6.11 | ||
| Summary | 0002034: Get 720p resolutions to use high res HUD art | ||||
| Description | Currently < 768p resolutions use the low res HUD art. 1280x720p could be utilizing the high res art scaled down. | ||||
| Additional Information | The_E is working on this, Zacam will follow through with commit. | ||||
| Tags | No tags attached. | ||||
|
2009-11-21 23:03
|
Resolution.patch (387 bytes)
Index: code/graphics/2d.cpp
===================================================================
--- code/graphics/2d.cpp (revision 5671)
+++ code/graphics/2d.cpp (working copy)
@@ -378,7 +378,7 @@
gr_screen.custom_size = true;
}
- if ( (width >= 1024) && (height >= 768) ) {
+ if ( (width >= 1024) && (height >= 600) ) {
res = GR_1024;
} else {
res = GR_640;
|
|
|
Proposed patch from Topic Thread attached. |
|
|
Works good on my end, should be able to take some sharp 720p videos with this now :) Although since youtube now supports 1080p I might not bother. |
|
|
Committed in 5681. |
| Date Modified | Username | Field | Change |
|---|---|---|---|
| 2009-11-10 17:09 | chief1983 | New Issue | |
| 2009-11-10 17:09 | chief1983 | Status | new => assigned |
| 2009-11-10 17:09 | chief1983 | Assigned To | => Zacam |
| 2009-11-21 23:03 | Zacam | File Added: Resolution.patch | |
| 2009-11-21 23:03 | Zacam | Note Added: 0011313 | |
| 2009-11-21 23:03 | Zacam | Status | assigned => feedback |
| 2009-11-22 17:17 | chief1983 | Note Added: 0011320 | |
| 2009-11-24 03:21 | chief1983 | Note Added: 0011334 | |
| 2009-11-24 03:21 | chief1983 | Status | feedback => resolved |
| 2009-11-24 03:21 | chief1983 | Resolution | open => fixed |
| 2009-11-24 03:21 | chief1983 | Fixed in Version | => 3.6.11 |