Changeset 107775 in vbox for trunk/src/VBox/Devices/Samples
- Timestamp:
- Jan 15, 2025 1:03:17 PM (5 weeks ago)
- svn:sync-xref-src-repo-rev:
- 166911
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Samples/DevPlayground.cpp
r106061 r107775 276 276 if (uBigBAR0MB < 1 || uBigBAR0MB > 4095) 277 277 return PDMDEV_SET_ERROR(pDevIns, rc, N_("Configuration error: Invalid \"BigBAR0MB\" value (must be between 1 and 4095)")); 278 cbFirstBAR = uBigBAR0MB * _1M ;278 cbFirstBAR = uBigBAR0MB * _1M64; 279 279 } 280 280 … … 297 297 if (uBigBAR2MB < 1 || uBigBAR2MB > 4095) 298 298 return PDMDEV_SET_ERROR(pDevIns, rc, N_("Configuration error: Invalid \"BigBAR2MB\" value (must be between 1 and 4095)")); 299 cbSecondBAR = uBigBAR2MB * _1M ;299 cbSecondBAR = uBigBAR2MB * _1M64; 300 300 } 301 301
Note:
See TracChangeset
for help on using the changeset viewer.